-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.36 KB
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
{
"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:backend": "cd apps/backend && pnpm start:dev",
"start:frontend": "cd apps/frontend && pnpm dev",
"build:backend": "cd apps/backend && pnpm build",
"build:frontend": "cd apps/frontend && pnpm build",
"lint:frontend": "cd apps/frontend && pnpm lint",
"lint:backend": "cd apps/backend && pnpm lint",
"lint": "concurrently \"pnpm lint:frontend\" \"pnpm lint:backend\"",
"lint:fix": "eslint apps --ext .ts,.tsx --fix",
"format": "prettier --write apps",
"format:check": "prettier --check apps"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "5.2.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.5.3"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"packageManager": "pnpm@10.7.0+sha256.35cab26953bf90847e798839db58c9a2a82d526b7af179fd2a103c18242cadc6",
"dependencies": {
"next-nest-template": "file:"
}
}