-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 763 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 763 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
30
31
{
"name": "code_share",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"assert": "^1.4.1",
"axios": "^0.16.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"check-error": "^1.0.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.5",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.8.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^6.5.1",
"socket.io": "^2.0.3",
"vm": "^0.1.0"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"debugger": "DEBUG=*:* npm run dev",
"deploy": "cd client && yarn build && cp -a ./build/ ../public/"
}
}