-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"private": true,
"name": "node-typescript",
"version": "1.0.0",
"scripts": {
"build": "run-s build:clean build:code",
"build:clean": "rimraf dist",
"build:code": "tsc",
"dev": "nodemon src/entry.ts",
"dev:debug": "nodemon --inspect src/entry.ts",
"fmt": "prettier --write '**/*.{js,ts}'",
"fmt:p": "prettier-package-json --write",
"prod": "run-s build && node dist/entry.js",
"test": "jest --no-cache"
},
"dependencies": {
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/supertest": "2.0.11",
"express": "4.17.3",
"jest": "27.5.1",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"prettier": "2.6.0",
"prettier-package-json": "2.6.3",
"rimraf": "3.0.2",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"ts-node": "10.7.0",
"typescript": "4.6.2",
"winston": "3.6.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
}
}