generated from kir-dev/next-nest-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"dependencies": {
"@kir-dev/passport-authsch": "^2.1.0",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"next-nest-template": "file:",
"react-router-dom": "^6.23.1"
},
"name": "next-nest-template",
"version": "0.0.0",
"description": "Template repository for full-stack NestJS + NextJS projects",
"author": "Kir-Dev",
"license": "MIT",
"private": true,
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"scripts": {
"start:backend": "cd apps/backend && yarn start:dev",
"start:frontend": "cd apps/frontend && yarn dev",
"build:backend": "cd apps/backend && yarn build",
"build:frontend": "cd apps/frontend && yarn build",
"lint": "eslint apps/* --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint apps/* --ext .ts,.tsx --fix",
"format": "prettier --write apps",
"format:check": "prettier --check apps",
"setup:db:dev": "cd apps/backend && npx prisma migrate dev"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-next": "14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.5",
"prisma": "^5.16.1"
},
"workspaces": [
"apps/*"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}