-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.24 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.24 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "lowcode-platform-react",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint:script": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./src",
"lint:style": "stylelint --fix \"src/**/*.{css,scss}\"",
"preview": "vite preview",
"prepare": "husky install",
"commit": "git-cz",
"lint:ls-lint": "ls-lint",
"lint:lint-staged": "lint-staged -c ./.husky/lint-staged.config.js"
},
"dependencies": {
"@jeffery/editor": "workspace:^",
"@jeffery/lodash": "workspace:^",
"antd": "^5.6.4",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"immer": "^10.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"-": "^0.0.1",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-gitmoji": "^2.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"sass": "^1.63.6",
"standard-version": "^9.5.0",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.2.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.3.0",
"vite-plugin-windicss": "^1.9.0",
"vite-tsconfig-paths": "^4.2.0",
"windicss": "^3.5.6"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}