-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 939 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
35
36
37
{
"name": "jobs-server",
"version": "0.1.0",
"description": "jobs server",
"main": "dist/index.js",
"author": "Chiang",
"license": "MIT",
"scripts": {
"eslint": "eslint src/**/*.ts",
"init": "tsc && node ./dist/index.js",
"test": "mocha"
},
"dependencies": {
"axios": "^0.21.1",
"chai": "^4.3.4",
"dayjs": "^1.10.6",
"joi": "^17.4.2",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-router": "^10.0.0",
"mocha": "^9.0.3",
"mongodb": "^4.1.0"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/mongodb": "^3.6.20",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"typescript": "^4.3.5"
}
}