This repository was archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "yarn watch",
"build": "rimraf dist && yarn build-ts",
"serve": "node dist/index.js",
"watch": "NODE_ENV=development ts-node-dev src/index.ts",
"test": "jest --coverage --verbose",
"test:ci": "JEST_JUNIT_OUTPUT='reports/junit/js-test-results.xml' jest --ci --coverage --verbose --reporters=default --reporters=jest-junit",
"watch-test": "yarn test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w"
},
"dependencies": {
"bluebird": "^3.7.2",
"dotenv": "^9.0.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"source-map-support": "^0.5.19",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bluebird": "^3.5.34",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.23",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.2",
"@types/node": "^15.0.2",
"@types/supertest": "^2.0.11",
"@types/yup": "^0.29.11",
"concurrently": "^6.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"engines": {
"node": "14"
}
}