generated from kir-dev/next-nest-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"dependencies": {
"@nestjs/mapped-types": "^2.0.5"
},
"name": "next-nest-template",
"version": "0.0.0",
"description": "Template repository for full-stack NestJS + NextJS projects",
"author": "Kir-Dev",
"license": "MIT",
"private": true,
"scripts": {
"start": "concurrently \"yarn start:backend\" \"yarn start:frontend\"",
"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:frontend": "cd apps/frontend && yarn lint",
"lint:backend": "cd apps/backend && yarn lint",
"lint": "concurrently \"yarn lint:frontend\" \"yarn lint:backend\"",
"lint:fix": "eslint apps --ext .ts,.tsx --fix",
"format": "prettier --write apps",
"format:check": "prettier --check apps"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"prettier": "^3.3.3"
},
"workspaces": [
"apps/*"
],
"packageManager": "[email protected]"
}