-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "backendv2",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"scripts": {
"start": "node ./dist/server.js",
"build": "tsc -p tsconfig.json",
"ts-watch": "tsc --preserveWatchOutput -w -p tsconfig.json",
"watch": "sleep 5 && nodemon --watch dist ./dist/server.js",
"dev": "npm run build && concurrently npm:ts-watch npm:watch",
"test": "jest --runInBand --forceExit",
"test-debug": "jest --runInBand"
},
"devDependencies": {
"@types/jest": "^26.0.17",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__multer": "^2.0.2",
"@types/supertest": "^2.0.10",
"@types/tar-fs": "^2.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nock": "^13.0.5",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"multer": "^1.4.2",
"tar-fs": "^2.1.1",
"uuid": "^8.3.1",
"winston": "^3.3.3"
},
"nodemonConfig": {
"delay": "2500"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}