-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 908 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
35
36
37
38
39
{
"name": "@ordzaar/standard",
"version": "0.0.0",
"private": true,
"files": [],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"format": "prettier --write .",
"lint": "turbo run lint -- --fix",
"prepare": "husky",
"test": "turbo run test",
"write": "turbo run write"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"prettier": "@ordzaar/standard-prettier",
"devDependencies": {
"@ordzaar/eslint-config": "workspace:*",
"@ordzaar/standard-prettier": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"semver": "^7.6.3",
"turbo": "^2.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.15.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"eslint-plugin-react-hooks": "5.1.0"
}
}
}