-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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": "official-site-backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "node ./builder/index.js",
"start": "node index.js",
"test": "mocha --timeout=10000 --exit",
"test-with-coverage": "istanbul cover node_modules/mocha/bin/_mocha --timeout=10000 --report lcovonly -- -R spec --exit && cat ./coverage/lcov.info | codacy-coverage --token 665bcbb6629a4b8c989510d9133660d8 && rm -rf ./coverage"
},
"author": "RBwang",
"license": "ISC",
"dependencies": {
"callsite": "^1.0.0",
"hjson": "^3.1.2",
"joi": "^14.3.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-cors": "0.0.16",
"koa-json": "^2.0.2",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"level-rocksdb": "^3.0.1",
"moment": "^2.24.0",
"mongodb": "^3.2.2",
"mysql": "^2.16.0",
"stream-to-promise": "^2.2.0",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"codacy-coverage": "^3.4.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.1",
"nyc": "^13.3.0",
"mocha-lcov-reporter": "^1.3.0"
}
}