-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1 KB
/
package.json
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
37
38
39
40
41
{
"name": "cysys-jwt-auth",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/server",
"test": "mocha --compilers js:babel-core/register --recursive --reporter spec",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.18.1",
"config": "^1.26.2",
"cookie-parser": "~1.4.3",
"debug": "~3.0.1",
"ejs": "~2.5.6",
"express": "~4.15.4",
"fn-args": "^3.0.0",
"jsonwebtoken": "^8.0.1",
"level-sublevel": "^6.6.1",
"leveldown": "^1.8.0",
"levelup": "^1.3.9",
"memdown": "^1.3.1",
"morgan": "~1.8.2",
"serve-favicon": "~2.4.2",
"uuid": "^3.1.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"bluebird": "^3.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-immutable": "^1.6.0",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"supertest": "^3.0.0"
}
}