-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "futurice-challenge",
"version": "0.0.1",
"description": "API project for 'Calculator' app",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/helmet": "0.0.47",
"@types/node": "^8.0.29",
"jest": "^27.4.7",
"supertest": "^6.2.0",
"ts-node": "9.1.1",
"typescript": "3.9.7"
},
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/helmet": "0.0.47",
"body-parser": "^1.18.1",
"dapr-client": "^2.0.1",
"express": "^4.15.4",
"helmet": "^4.0.0",
"jest": "^27.4.7",
"supertest": "^6.2.0",
"ts-node": "9.1.1",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "3.9.7"
},
"scripts": {
"tsc": "tsc",
"start": "ts-node-dev --respawn ./src/index.ts",
"test": "jest"
},
"engin": {
"node": "12.22.5"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}