-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "sodalicious-server",
"version": "1.0.0",
"description": "Control robot drink mixer",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "babel-node server.js",
"client": "babel-node start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmtwebdevs/sodalicious.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bmtwebdevs/sodalicious/issues"
},
"homepage": "https://github.com/bmtwebdevs/sodalicious#readme",
"dependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"body-parser": "1.17.2",
"colors": "1.1.2",
"express": "4.13.3",
"johnny-five": "^0.11.1",
"mongoose": "^4.10.5",
"twitter":"1.7.1",
"slack":"8.3.1"
},
"devDependencies": {
"concurrently": "3.1.0",
"eslint": "3.15.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"babel-eslint": "7.2.3"
}
}