-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "risk-score-api",
"version": "1.0.0",
"description": "Risk score calculation engine",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"build": "docker build . -t risk-score-api",
"start": "docker run -p 3000:8080 risk-score-api",
"start:dev": "tsnd --inspect=8181 --respawn --transpile-only src/index.ts",
"test": "jest --watchAll --coverage --runInBand",
"test:list": "jest --verbose --silent --runInBand",
"lint": "eslint --fix .",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/joi": "^17.2.3",
"@types/node": "^16.11.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^17.4.2"
}
}