-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "frontend-mono",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "pnpm install && husky install",
"build": "turbo run build",
"clean": "turbo run clean --parallel && rm -rf node_modules",
"dev": "turbo run dev --no-cache --continue",
"hook:pre-commit": "lint-staged",
"init": "corepack prepare pnpm@latest --activate && pnpm run bootstrap",
"lint": "turbo run lint --parallel",
"lint:ci": "pnpm run lint",
"startup": "nvm install 18.16.0 ; nvm use && corepack enable && pnpm run init && pnpm run dev",
"sync": "syncpack format && syncpack list-mismatches",
"sync:fix": "syncpack fix-mismatches"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@local/eslint-config": "workspace:*",
"@local/prettier-config": "workspace:*",
"@local/tsconfig": "workspace:*",
"commitizen": "^4.3.0",
"commitlint": "^17.6.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"syncpack": "^10.1.0",
"turbo": "^1.9.9"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "18.16.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@local/eslint-config"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{tsx,jsx,css,scss}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.6.0",
"prettier": "@local/prettier-config"
}