-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
executable file
·54 lines (54 loc) · 1.9 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"commit": "npx cz",
"deduplicate": "yarn yarn-deduplicate -s fewer",
"docs": "yarn workspace docs",
"postinstall": "yarn deduplicate && yarn lint:sortpackages",
"lint": "concurrently \"yarn lint:eslint\" \"yarn lint:prettier\" \"yarn lint:sortpackages\"",
"lint:eslint": "eslint --config .eslintrc --fix '{*,**/*}.{js,jsx,ts,tsx}'",
"lint:prettier": "prettier --write '{*,**/*}.{css,html,json,js,jsx,md,ts,tsx,yml,yaml}'",
"lint:sortpackages": "sort-package-json package.json **/*/package.json",
"menu": "yarn workspace mui-nested-menu",
"prepare": "husky install",
"prestart": "yarn global add turbo",
"start": "turbo run start"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz.config.js"
}
},
"dependencies": {},
"devDependencies": {
"@parcel/packager-ts": "2.11.0",
"@parcel/transformer-typescript-types": "2.11.0",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cz-customizable": "7.0.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"fx": "34.0.0",
"husky": "9.0.6",
"lint-staged": "15.2.0",
"prettier": "3.2.4",
"sort-package-json": "2.6.0",
"ttypescript": "1.5.15",
"turbo": "1.11.3",
"yarn-deduplicate": "6.0.2"
}
}