-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 KB
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
49
50
51
52
{
"name": "hackbackpack3-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/app.js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Backpack-Technologies/hackbackpack3-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Backpack-Technologies/hackbackpack3-node/issues"
},
"homepage": "https://github.com/Backpack-Technologies/hackbackpack3-node#readme",
"dependencies": {
"babel-runtime": "^6.6.1",
"cors": "^2.8.1",
"express": "^4.14.0",
"nodemon": "^1.14.11",
"path": "^0.12.7",
"socket.io": "^1.4.8"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"istanbul": "^0.4.3"
}
}