-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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": "dad-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "nodemon --watch dist dist/index.js",
"dev": "tsx watch src/index.ts",
"migrate": "prisma generate && prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "4.13.0",
"binary-parser": "^2.2.1",
"cuid": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"long": "^5.2.3",
"nodemon": "^2.0.22",
"parser": "^0.1.4",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"protobufjs": "^7.2.3",
"tsc-alias": "^1.8.6",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.13",
"fs-extra": "^11.1.1",
"prisma": "^4.13.0"
},
"engines": {
"node": ">=17.0.0"
}
}