-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 854 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 854 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
29
{
"name": "capstone-auth",
"version": "0.0.1",
"scripts": {
"start": "node src/server/server.js",
"watch": "nodemon src/server/server.js",
"dev-win": "start npm run mongo && npm run watch",
"dev-unix": "npm run mongo & npm run watch",
"devw": "npm run dev-win",
"devm": "npm run dev-unix",
"devl": "npm run dev-unix",
"mongo": "mongod --dbpath data/db --port 2000"
},
"dependencies": {
"axios": "^0.17.1",
"base64-url": "^2.1.0",
"body-parser": "^1.18.2",
"capstone-utils": "github:Leveld/LAN-Utils",
"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",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.4"
}
}