-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
{
"name": "book-inventory",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "jest --coverage",
"fmt": "prettier --config .prettierrc './**/*.ts' --write"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "7.1.1",
"body-parser": "1.19.0",
"express": "4.17.1",
"kill-port": "^2.0.1",
"prettier": "2.2.1",
"simple-json-loader": "1.0.0"
},
"devDependencies": {
"@types/express": "4.17.11",
"@types/jest": "^28.1.6",
"@types/node": "^14.18.16",
"@types/prettier": "2.2.1",
"@types/supertest": "^2.0.12",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tslint": "6.1.3",
"typescript": "4.2.2"
}
}