-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 956 Bytes
/
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
{
"name": "boilerplate",
"version": "1.0.0",
"private": "true",
"workspaces": [
"apps/*",
"libs/*"
],
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm exec nx run-many -t build",
"format": "prettier \"{apps,libs}/**/*.{ts,tsx,js,json}\" --ignore-path .gitignore",
"format:check": "pnpm format --check",
"format:write": "pnpm format --write",
"tsc": "pnpm exec nx run-many -t tsc",
"lint": "pnpm exec nx run-many -t lint",
"validate": "pnpm format:write && pnpm tsc && pnpm lint",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.11.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"nx": "20.0.6",
"prettier": "^3.0.0"
}
}