-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "jscn-starter",
"version": "1.0.0",
"description": "Vote for the next US president, using React or whatever client of choice",
"main": "index.js",
"scripts": {
"start": "babel-node server/index",
"compile": "babel -d bin/ server/",
"lint": "eslint .",
"test": "mocha --require babel-register server/**/*.test.js -R spec --ui bdd"
},
"directories": {
"test": "test"
},
"dependencies": {
"babel-cli": "~6.14.0",
"body-parser": "~1.15.2",
"express": "~4.14.0",
"json-server": "~0.8.18",
"lodash": "~4.17.5",
"node-uuid": "~1.4.7",
"socket.io": "^1.4.5"
},
"devDependencies": {
"babel-cli": "~6.14.0",
"babel-plugin-transform-object-rest-spread": "~6.8.0",
"babel-preset-es2015": "~6.14.0",
"babel-register": "~6.14.0",
"eslint": "~3.4.0",
"eslint-config-airbnb": "~10.0.1",
"eslint-plugin-import": "~1.14.0",
"eslint-plugin-jsx-a11y": "~2.2.0",
"eslint-plugin-react": "~6.2.0",
"expect": "~1.20.2",
"mocha": "~3.0.2",
"supertest": "~2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscodingnights/jscn-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jscodingnights/jscn-starter/issues"
},
"homepage": "https://github.com/jscodingnights/jscn-starter#readme"
}