-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.8 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.8 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
{
"scripts": {
"test": "npm run build",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --colors --config ./webpack.config.js",
"build": "cross-env NODE_ENV=production webpack -p --progress --colors --config ./webpack.config.js",
"build:silent": "cross-env NODE_ENV=production webpack -p --colors --config ./webpack.config.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.4",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.8.3",
"react-hot-loader": "^3.1.3",
"redux-devtools": "^3.4.1",
"sass-loader": "^6.0.7",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.9.7"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"react",
"stage-2"
],
"plugins": [
"react-hot-loader/babel",
[
"babel-plugin-inline-import",
{
"extensions": [
".ts",
".html",
".css",
".gql"
]
}
]
]
},
"dependencies": {
"@devexpress/dx-react-core": "^1.1.1",
"@devexpress/dx-react-grid": "^1.1.1",
"@devexpress/dx-react-grid-material-ui": "^1.1.1",
"autosuggest-highlight": "^3.1.1",
"babel-inline-import-loader": "^0.0.5",
"babel-plugin-inline-import": "^2.0.6",
"codemirror": "^5.36.0",
"copy-webpack-plugin": "^4.5.1",
"history": "^4.7.2",
"immutability-helper": "^2.6.6",
"lodash": "^4.17.17",
"material-ui": "^1.0.0-beta.39",
"material-ui-icons": "^1.0.0-beta.36",
"moment": "^2.21.0",
"nprogress": "^0.2.0",
"query-string": "^5.0.1",
"react": "^16.2.0",
"react-autosuggest": "^9.3.4",
"react-codemirror2": "^4.2.1",
"react-container-dimensions": "^1.3.3",
"react-contextmenu": "^2.9.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-draggable": "^3.0.5",
"react-easy-chart": "^1.0.0",
"react-http-request": "^1.0.4",
"react-inspector": "^2.2.2",
"react-json-view": "^1.16.1",
"react-linkify": "^0.2.2",
"react-measure": "^2.0.2",
"react-monaco-editor": "^0.14.1",
"react-redux": "^5.0.7",
"react-rnd": "^7.4.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-syntax-highlighter": "^7.0.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"source-map-loader": "^0.2.3",
"tapable": "^1.0.0-beta.5",
"uglifyjs-webpack-plugin": "^1.2.4"
},
"private": false
}