forked from illacloud/illa-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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": "illa",
"description": "Help developers build business tools more efficiently.",
"repository": "[email protected]:illacloud",
"private": true,
"author": "illa Cloud",
"license": "Apache-2.0",
"version": "0.0.0",
"scripts": {
"preinstall": "cd illa-design && pnpm install",
"dev": "turbo run dev",
"build-cloud": "NODE_OPTIONS=--max-old-space-size=10240 turbo run build-cloud",
"build-self": "NODE_OPTIONS=--max-old-space-size=10240 turbo run build-self",
"prepare": "husky install",
"format": "prettier --write \"apps/**/*.{ts,tsx}\"",
"lint": "eslint \"apps/**/src/**\" --ext \".ts,.tsx\" --config \".eslintrc.js\"",
"test": "turbo run test"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.6.3"
}
}