-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.65 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
{
"name": "graph-app",
"version": "1.0.0",
"description": "graph-app with react and rollup",
"main": "index.js",
"author": "donaldlh",
"license": "ISC",
"scripts": {
"start": "cross-env NODE_ENV=development && rollup -c -w",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c",
"product": "serve dist"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime-corejs3": "^7.11.2",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"antd": "4.5.1",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-react-require": "^3.1.3",
"cross-env": "^7.0.2",
"eslint-plugin-react": "^7.20.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-less": "^1.1.2",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-postcss": "^3.1.5",
"rollup-plugin-scss": "^2.1.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-terser": "^7.0.0",
"serve": "^11.3.2"
}
}