forked from iron-tech-space/react-tech-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.43 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "rt-design",
"version": "0.0.80",
"description": "React technical design library",
"author": "Iron tech space",
"license": "MIT",
"repository": "https://github.com/iron-tech-space/react-tech-design.git",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build:lib": "npx babel src --out-dir lib --copy-files && node afterBuildLib.js",
"build:dist": "rollup -c",
"build": "npm run build:dist && npm run build:lib",
"clean:lib": "rm -rf lib && mkdir lib",
"clean:dist": "rm -rf dist && mkdir dist",
"clean": "rm -rf node_modules package-lock.json && npm run clean:lib && npm run clean:dist",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run build",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd website && npm install && npm run build",
"prettier:lib": "prettier --write 'src/**/*'",
"prettier:website": "prettier --write 'website/**/*.js'",
"deploy": "gh-pages -d website/build"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@babel/runtime": "^7.14.8",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.12",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"antd": "^4.16.10",
"moment": "^2.29.1",
"object-path": "^0.11.5",
"prop-types": "^15.7.2",
"react-base-table": "^1.12.0",
"react-grid-layout": "^1.3.0",
"react-sizeme": "^3.0.2",
"recharts": "^2.1.4",
"typescript": "^4.3.5",
"websocket": "^1.0.34"
},
"peerDependencies": {
"@ant-design/icons": "^4.6.2",
"@babel/runtime": "^7.14.8",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.12",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"antd": "^4.16.10",
"moment": "^2.29.1",
"object-path": "^0.11.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-base-table": "^1.12.0",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.0",
"react-redux": "^7.2.4",
"react-sizeme": "^3.0.2",
"redux": "^4.1.1",
"recharts": "^2.1.4",
"typescript": "^4.3.5",
"websocket": "^1.0.34"
},
"devDependencies": {
"@svgr/rollup": "^2.4.1",
"@types/object-path": "^0.11.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-import": "^1.13.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-standard": "^3.1.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"prettier": "^2.3.2",
"react-docgen": "^5.4.0",
"react-scripts": "^4.0.3",
"redux": "^4.1.1",
"rollup": "^2.56.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-url": "^1.4.0"
},
"files": [
"dist",
"lib"
]
}