-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "nestjs-nextjs-boilerplate",
"version": "1.0.0",
"description": "[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.",
"main": "index.js",
"scripts": {
"dev:ui": "cd ./client && npm run dev",
"start:dev": "cd ./backend && npm run start:dev",
"lint:ui": "cd ./client && npm run lint",
"preinstall": "husky install",
"format": "prettier --write \"backend/**/**/*.ts\" \"client/**/**/*.ts\"",
"check": "prettier --check \"backend/**/**/*.ts\" \"client/**/**/*.ts\"",
"lint:be": "cd ./backend && npm run eslint",
"lint:fix:be": "cd ./backend && npm run eslint:fix",
"precommit": "lint-staged && npm run lint:be && npm run lint:ui",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:thisalihassan/nestjs-nextjs-boilerplate.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"husky": "^8.0.0"
},
"workspaces": [
"backend",
"client"
]
}