-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 952 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 952 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
32
33
34
35
36
{
"name": "quantblitz",
"version": "0.0.1",
"engine": "node >= 7.0.0",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"development": "cross-env NODE_ENV=development node server.js",
"vagrant": "rm -f config.json && vagrant up && vagrant ssh -c \"sudo cat /home/vagrant/config.json\" >> config.json && vagrant ssh"
},
"private": true,
"dependencies": {
"argon2": "^0.14.1",
"bhttp": "^1.2.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.13.4",
"express-session": "^1.14.1",
"express-ws": "^2.0.0",
"helmet": "^3.4.0",
"knex": "^0.11.7",
"morgan": "^1.8.1",
"pg": "^6.0.1",
"redis": "^2.6.2",
"ws": "^2.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"mocha": "^2.5.3",
"sinon": "^1.17.4"
},
"license": "ISC"
}