-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "clearvue_back",
"version": "1.0.0",
"description": "Backend app for ClearVue",
"main": "app.ts",
"scripts": {
"start": "tsc && nodemon src/app.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"engines": {
"node": "20.x"
},
"author": "Ivan Kabar",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "6.15.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.7",
"jest": "^29.6.4",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5"
}
}