-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "clean-todo",
"version": "1.0.0",
"description": "A TODO app based on Bob Martin's Clean Architecture principles",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"test": "jest",
"gen-env-types": "npx gen-env-types .env",
"build:prod": "./node_modules/.bin/tsc",
"start:prod": "node build/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@types/supertest": "^2.0.12",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"nodemon": "^2.0.21",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.12",
"winston": "^3.8.2"
}
}