-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 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
{
"name": "@low-code-brick/wrapper",
"version": "1.0.2",
"license": "MIT",
"type": "module",
"main": "lib/index.es.js",
"module": "src",
"browser": "lib/index.umd.cjs",
"scripts": {
"build": "vite build",
"build:example": "cross-env VITE_ENV=dev vite build --emptyOutDir",
"dev": "cross-env VITE_ENV=dev vite",
"postinstall": "patch-package",
"lint": "lint-staged",
"prepare": "husky install",
"preview": "vite preview",
"sort": "sort-package-json package.json"
},
"lint-staged": {
"*.{js,jsx,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@tweenjs/tween.js": "^18.6.4",
"animate.css": "^4.1.1",
"classnames": "^2.3.1",
"draggabilly": "^3.0.0",
"hammerjs": "^2.0.8",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@faker-js/faker": "^7.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/hammerjs": "^2.0.41",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-react": "^2.0.0",
"antd": "^4.21.7",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^10.0.7",
"patch-package": "^6.4.7",
"prettier": "^2.2.1",
"sort-package-json": "^1.55.0",
"terser": "^5.14.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-style-import": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}