forked from alindas/3d-building-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "universal-3d-editor",
"version": "0.2.0",
"description": "通用3d组态编辑器",
"private": true,
"engines": {
"node": ">=16.0.0 <18.0.0"
},
"scripts": {
"start": "umi dev",
"build": "umi build",
"postinstall": "umi generate tmp",
"prepare": "husky install",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"stylelint": "stylelint --cache --fix \"**/*.{less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"deploy": "gh-pages -d dist"
},
"lint-staged": {
"*.{less,css}": [
"prettier --write",
"stylelint --fix",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix",
"git add"
],
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix"
},
"dependencies": {
"@ant-design/pro-layout": "^6.5.0",
"@tweenjs/tween.js": "^18.6.4",
"axios": "^0.27.2",
"jszip": "^3.10.0",
"nprogress": "^0.2.0",
"react": "17.x",
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
"react-dom": "17.x",
"three": "^0.151.3",
"three-mesh-bvh": "^0.6.8",
"umi": "^3.5.27"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.0",
"@types/three": "^0.141.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.5.27",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^10.0.7",
"postcss-less": "^6.0.0",
"prettier": "^2.2.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-less": "1.0.6",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}