-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 833 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 833 Bytes
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
{
"name": "capstone-api",
"version": "0.0.1",
"scripts": {
"start": "node src/server/server.js",
"watch": "nodemon src/server/server.js",
"dev-win": "eslint src/*/*.js && eslint src/*.js && npm run watch",
"dev-unix": "eslint src/*/*.js && eslint src/*.js && npm run watch",
"devw": "npm run dev-win",
"devm": "npm run dev-unix",
"devl": "npm run dev-unix"
},
"dependencies": {
"axios": "^0.17.1",
"base64-url": "^2.1.0",
"body-parser": "^1.18.2",
"cachios": "^1.0.8",
"capstone-utils": "github:Leveld/LAN-Utils",
"cors": "^2.8.4",
"eslint": "^3.17.1",
"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",
"express": "^4.16.2",
"googleapis": "^26.0.1"
}
}