-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (33 loc) · 919 Bytes
/
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
{
"scripts": {
"start": "cd dist && NODE_ENV=production node index",
"compile": "gulp dist-clean && gulp build && gulp copy-production",
"dev": "gulp build && gulp copy && cd dist && node index | pino -o 'short'",
"test": "node build.js && mocha 'test/**/*.ts'"
},
"dependencies": {
"@types/bluebird": "^3.5.42",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.0",
"@types/mysql": "^2.15.26",
"@types/xml": "^1.0.11",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-auth": "^4.2.0",
"lodash": "^4.17.21",
"mongodb": "^6.5.0",
"mysql": "^2.18.1",
"pino": "^9.0.0",
"xml": "^1.0.1",
"xmldom": "^0.6.0",
"xo": "^0.58.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7"
}
}