-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "hexagon-architecture",
"version": "1.0.0",
"description": "",
"main": "build/src/server.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"tsoa spec-and-routes\"",
"build": "npm run db:generate && tsoa spec-and-routes && tsc",
"start": "node build/src/server.js",
"test": "jest",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:deploy": "npx prisma migrate deploy",
"db:push": "npx prisma db push",
"db:seed": "ts-node src/seed/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-local-rules": "^1.3.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-regexp": "^1.14.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.12.0",
"express": "^4.18.2",
"prisma": "^4.12.0",
"swagger-ui-express": "^4.6.2",
"tsoa": "^5.1.1"
}
}