forked from illacloud/illa-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "illa",
"description": "Help developers build business tools more efficiently.",
"repository": "[email protected]:illa-family",
"private": true,
"author": "illa Family",
"license": "Apache-2.0",
"version": "0.0.0",
"scripts": {
"dev": "turbo run dev",
"build-cloud": "turbo run build-cloud",
"build-self": "turbo run build-self",
"prepare": "husky install",
"format": "prettier --write \"apps/**/*.{ts,tsx}\"",
"lint": "eslint apps/**/src/ --ext .ts,.tsx --config .eslintrc.js"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.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.1.1"
},
"workspaces": [
"apps/builder",
"illa-design/packages/*"
],
"packageManager": "[email protected]",
"nyc": {
"report-dir": "cypress-coverage",
"reporter": [
"lcov"
]
}
}