-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "express-typescript-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev src/index.ts",
"db:seed": "ts-node src/seed.ts",
"db:push": "prisma db push",
"generate:clint": "npm run prisma -- generate",
"build": "tsc",
"serve": "node dist/index.js",
"lint": "eslint src/**/*.ts --fix",
"prepare": "husky install",
"prisma": "prisma",
"prisma:generate": "prisma generate",
"generate:types": "ts-node-dev src/generate-interface.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.14.0",
"@types/lodash": "^4.17.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"lodash": "^4.17.21",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"prisma": "^5.13.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"json-schema-to-typescript": "^15.0.2",
"zod-to-json-schema": "^3.23.3",
"axios": "^1.7.7"
}
}