-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "sugar",
"version": "0.0.0",
"description": "",
"main": "index.js",
"author": "",
"devDependencies": {
"chai": "^5.1.0",
"chai-changes": "^1.3.4",
"chai-spies": "^1.0.0",
"engine.io-client": "~6.6.0",
"mocha": "^10.2.0",
"uglify-js": "^3.17.4"
},
"dependencies": {
"@sentry/node": "^7.36.0",
"basic-auth": "2.0.1",
"body-parser": "^1.18.3",
"check-engines": "^1.5.0",
"engine.io": "~6.6.0",
"express": "^4.16.4",
"express-rate-limit": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.9.1",
"newrelic": "^12.5.1",
"primus": "^8.0.7",
"redis": "^4.6.4"
},
"engines": {
"node": "^20.5",
"npm": ">=8.19"
},
"scripts": {
"start": "export NODE_ENV=development; ./node_modules/.bin/check-engines && ./docker/start.sh",
"test": "check-engines && mocha",
"compile-client": "./node_modules/.bin/uglifyjs lib/client.js -c -m --source-map \"filename='public/client.js',url='./client.js.map'\" -o public/client.js && rm -rf temp"
}
}