-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "workwise-backend",
"version": "1.0.0",
"description": "workwise backend app",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production nodemon ./src/index.ts",
"dev": "nodemon --watch '**/*.ts' --exec 'ts-node' ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [],
"author": "Bulut Yerli",
"license": "Apache-2.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^7.0.1",
"firebase-admin": "^12.1.0",
"kysely": "^0.27.3",
"pg": "^8.11.4",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.2",
"@types/pg": "^8.11.4",
"@types/validator": "^13.11.9",
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}