-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"scripts": {
"start": "ts-node src/app",
"dev": "nodemon",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "./check_not_prod.js && mocha --timeout 60000 --slow 500 --exit --require ts-node/register src/test/**/*.test.ts",
"ts": "ts-node",
"redis": "redis-cli -h $REDIS_HOST -p $REDIS_PORT -a $REDIS_PASSWORD",
"tail": "gcloud app logs tail -s default",
"heroku-prebuild": "heroku/heroku-setup.sh"
},
"engines": {
"node": "16"
},
"license": "UNLICENSED",
"dependencies": {
"@google-cloud/datastore": "6.6.2",
"@types/body-parser": "1.17.x",
"@types/chai": "4.1.2",
"@types/cookie-session": "2.0.34",
"@types/csurf": "1.9.35",
"@types/dotenv": "4.0.3",
"@types/express": "4.11.1",
"@types/google-cloud__datastore": "1.3.0",
"@types/ioredis": "3.2.7",
"@types/joi": "13.0.7",
"@types/jsesc": "0.4.29",
"@types/mocha": "5.0.0",
"@types/morgan": "1.7.35",
"@types/node-fetch": "1.6.8",
"@types/raven": "2.1.6",
"@types/underscore": "1.8.8",
"body-parser": "1.17.x",
"chai": "4.1.2",
"cookie-session": "2.0.0-beta.3",
"csurf": "1.9.0",
"debug": "4.1.0",
"dotenv": "5.0.1",
"dropbox": "^5",
"express": "4.14.x",
"express-handlebars": "3.0.x",
"ioredis": "3.2.2",
"joi": "13.1.2",
"jsesc": "2.5.1",
"mocha": "5.0.5",
"moment": "2.22.1",
"morgan": "1.9.0",
"node-fetch": "2.1.2",
"raven": "2.5.0",
"ts-node": "^5.0.1",
"tslint": "5.9.1",
"typescript": "2.7.2",
"underscore": "1.8.3"
},
"devDependencies": {
"@types/debug": "0.0.31",
"nodemon": "2.0.19"
}
}