-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "bookenzy",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"debug": "node --inspect-brk -r ts-node/register src/index.ts",
"start": "ts-node src/index.ts",
"start:uat": "NODE_ENV=uat ts-node src/index.ts",
"start:prod": "NODE_ENV=prod ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:dev": "NODE_ENV=development npm run build",
"build:uat": "NODE_ENV=uat npm run build",
"build:prod": "NODE_ENV=prod npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@neondatabase/serverless": "^0.10.1",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.8.6",
"@types/pg": "^8.11.10",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}