-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 958 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 958 Bytes
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
{
"name": "http_js",
"version": "1.0.0",
"description": "Poll Server",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"zod": "^3.23.6",
"zod-validation-error": "^3.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.4",
"@types/node": "^20.12.8",
"@types/validator": "^13.11.9",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"sequelize-cli": "^6.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}