-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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
{
"name": "smart-dashboard",
"version": "0.1.28",
"description": "A react base dashboard engine",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"doc": "typedoc --options typedoc.json",
"start": "build-scripts start",
"build": "build-scripts build",
"test": "echo \"no test\"",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run build",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint",
"eslint": "eslint --cache --ext .js,.jsx,.tsx,.ts ./",
"eslint:fix": "eslint --cache --fix --ext .js,.jsx,.tsx,.ts ./",
"stylelint": "stylelint --allow-empty-input ./**/*.scss",
"prettier": "prettier --write \"./{src,demo}/**/*.{tsx,js,jsx,json,css,ts,scss,less}\""
},
"author": "bruce007lee",
"license": "MIT",
"keywords": [
"react",
"dashboard"
],
"repository": {
"type": "git",
"url": "[email protected]:bruce007lee/smart-dashboard.git"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-rnd": "^10.3.7"
},
"devDependencies": {
"@ant-design/plots": "^1.0.9",
"@iceworks/spec": "^1.6.0",
"@types/classnames": "^2.2.9",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"antd": "^4.21.4",
"build-plugin-component": "^1.6.5",
"build-plugin-moment-locales": "^0.1.0",
"build-scripts": "^1.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^3.0.0",
"pretty-quick": "^3.1.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"stylelint": "^14.9.1",
"stylelint-config-ali": "^0.4.2",
"typedoc": "~0.20.25",
"typedoc-plugin-markdown": "~3.5.0",
"typescript": "^4.1.6",
"webpack": "^4.27.1",
"webpack-dev-server": "^3.7.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"files": [
"/lib",
"/es",
"/build"
],
"homepage": "https://unpkg.com/[email protected]/build/index.html"
}