-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
42
43
44
45
46
{
"name": "calendar-server",
"version": "0.1.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"start": "concurrently 'node app.js' 'node push_sender.js'"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"argon2": "^0.12.0",
"blessed": "^0.1.81",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.14.0",
"express-jwt": "^3.4.0",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.17.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"promisify-node": "^0.4.0",
"request": "^2.75.0",
"shush": "^1.0.0",
"sqlite3": "^3.1.4",
"web-push": "^2.1.1",
"zmq": "^2.15.3"
},
"devDependencies": {
"chakram": "^1.3.0",
"co": "^4.6.0",
"co-mocha": "^1.1.2",
"concurrently": "^2.1.0",
"eslint": "^2.13.1",
"mocha": "^2.5.3",
"request-promise": "^3.0.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"tcp-port-used": "^0.1.2",
"until-promise": "^0.2.2"
}
}