forked from illacloud/illa-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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]:illacloud",
"private": true,
"author": "illa Cloud",
"license": "Apache-2.0",
"version": "0.0.0",
"scripts": {
"dev": "turbo run dev",
"build-cloud": "NODE_OPTIONS=--max-old-space-size=12288 turbo run build-cloud",
"build-self": "NODE_OPTIONS=--max-old-space-size=12288 turbo run build-self",
"prepare": "husky install",
"format": "prettier --write \"apps/**/*.{ts,tsx}\"",
"lint": "eslint \"apps/**/src/**/**.{ts,tsx}\" --config \".eslintrc.js\"",
"test": "turbo run test",
"ts-check": "turbo run ts-check"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"turbo": "^1.8.3",
"vite": "^4.1.1"
}
}