-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.64 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.64 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
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
{
"name": "react-multipage",
"version": "0.1.0",
"description": "A react multipage application",
"license": "MIT",
"main": "src/modules/**/index.jsx",
"scripts": {
"gfw": "npm install -r https://registry.npm.taobao.org",
"dev": "cross-env NODE_ENV=development DEBUG=app* nodemon --exec webpack-dev-server --progress",
"mock": "concurrently -r -k \"cross-env NODE_ENV=development DEBUG=app:* json-server ./mock/db.json -w -p 3001 -r ./mock/routes.json\" \"npm run dev\" ",
"lint": "eslint --max-warnings 10 .",
"lint:fix": "npm run lint -- --fix",
"lint:css": "stylelint src/themes/**/*.css",
"clean": "node ./cli/clean",
"compile": "cross-env NODE_ENV=production DEBUG=app* node ./cli/compile",
"build": "npm run clean && npm run compile"
},
"dependencies": {
"antd": "^2.13.4",
"autobind-decorator": "^2.1.0",
"cytoscape": "^3.1.4",
"cytoscape-cola": "^2.0.0",
"cytoscape-cxtmenu": "^2.10.3",
"cytoscape-dagre": "^2.1.0",
"cytoscape-edgehandles": "^2.13.2",
"cytoscape-navigator": "^1.3.1",
"echarts": "^3.7.1",
"echarts-for-react": "^2.0.0",
"g2": "^2.3.6",
"g2-react": "^1.3.0",
"lodash": "^4.17.4",
"opiece-react-components": "0.0.9",
"opiece-utils": "0.0.6",
"prop-types": "^15.5.8",
"query-string": "^5.0.0",
"react": "^16.0.0",
"react-contextmenu": "^2.6.5",
"react-dom": "^16.0.0",
"string-template": "^1.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.13.2",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import": "^1.6.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.0",
"cross-env": "^5.0.1",
"cross-spawn": "^5.0.0",
"css-loader": "^0.28.0",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.24.0",
"json-server": "^0.12.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"loader-utils": "^1.1.0",
"multipage-webpack-plugin": "^0.4.0",
"nodemon": "^1.11.0",
"object-assign": "^4.1.1",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"redbox-react": "^1.3.3",
"rimraf": "^2.5.4",
"style-loader": "^0.19.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-hot-middleware": "^2.17.1",
"yargs": "^9.0.1"
},
"theme": {
"primary-color": "#529ef2",
"icon-url": "\"/static/font/iconfont\""
}
}