-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "pro04_back_jason_tanya_riley",
"version": "1.0.0",
"description": "> Premier purveyors of playful paraphenalia",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn src/server.ts",
"init-db": "ts-node ./src/models/dbInit.ts",
"seed-db": "ts-node ./src/models/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@npmcli/fs": "^4.0.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"bcrypt": "^5.1.1",
"connect-pg-simple": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"glob": "^11.0.0",
"pg": "^8.13.1",
"postgres": "^3.4.5"
},
"devDependencies": {
"@types/connect-pg-simple": "^7.0.3",
"@types/node": "^22.8.2",
"@types/pg": "^8.11.10",
"@types/validator": "^13.12.2",
"copyfiles": "^2.4.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}