-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
{
"name": "skeleton-api",
"version": "1.0.0",
"description": "skeleton-api",
"main": "index.js",
"scripts": {
"postinstall": "npx tsc",
"start": "npx pm2 start pm2.yaml",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "jest --coverage --verbose",
"make-badges": "node_modules/.bin/jest-badges-readme --coverageDir=coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/node": "^12.7.5",
"@types/request-promise": "^4.1.44",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^3.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"pm2": "^3.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.6.3"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.3.7",
"@types/jest": "^24.0.18",
"husky": "^3.0.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0"
}
}