-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 854 Bytes
/
package.json
File metadata and controls
34 lines (34 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
30
31
32
33
34
{
"name": "code",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "./node_modules/.bin/nodemon ./bin/www",
"test": "NODE_ENV=test ava --verbose ./tests/**.js",
"test:watch": "NODE_ENV=test ava --watch ./tests/**.js"
},
"dependencies": {
"config": "^3.1.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.1",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"primus": "^7.3.2",
"pug": "2.0.0-beta11",
"ws": "^6.2.1"
},
"devDependencies": {
"ava": "^1.4.1",
"mongodb-memory-server": "^5.1.0",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
}
}