-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "nodeapi",
"version": "1.0.0",
"description": "Node REST API",
"main": "index.js",
"scripts": {
"postinstall": "npx tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "jest --coverage --verbose",
"start": "npx pm2 start pm2.yaml"
},
"author": "Mayur Deore",
"license": "ISC",
"dependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/node": "^12.0.2",
"@types/request-promise": "^4.1.43",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"pm2": "^3.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.0.4",
"tsc-watch": "^2.2.1",
"typescript": "^3.4.5"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"ts-jest": "^24.0.2"
}
}