-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "utility-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"jest:init": "jest --init",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.4.2",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"p-retry": "^4.6.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"sinon": "^11.1.2",
"swagger-express-ts": "^1.1.0",
"swagger-ui-dist": "^3.52.5",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"tsc": "^2.0.3",
"typeorm": "^0.2.38",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/inversify": "^2.0.33",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.11.0",
"@types/p-retry": "^3.0.1",
"@types/sinon": "^10.0.5",
"nodemon": "^2.0.14"
}
}