-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 948 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
{
"name": "ioc-solid",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start:build": "npm run build && node ./dist/server.js",
"start:dev": "ts-node-dev --respawn ./src/server.ts",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/reflect-metadata": "^0.1.0",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"knex": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"inversify": "^6.0.2",
"inversify-express-utils": "^6.4.6",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.7"
}
}