-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.55 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.55 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
108
109
110
{
"name": "excel",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node ./app.js",
"start": "npm run dev",
"build": "gulp build"
},
"author": "dave-wind",
"license": "ISC",
"dependencies": {
"antd": "^3.23.3",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"file-saver": "^2.0.2",
"prop-types": "^15.6.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-highlight-words": "^0.16.0",
"react-router-dom": "^5.0.1",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.24.3",
"xlsx": "^0.15.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.12.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"core-js": "^2.5.7",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"file-loader": "^1.1.11",
"fs-extra": "^6.0.1",
"gulp": "^3.9.1",
"gulp-sequence": "^1.0.0",
"gulp-shell": "^0.6.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"react-scripts": "^2.1.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack-bundle-analyzer": "^3.5.1",
"webpack-merge": "^4.1.3"
},
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
[
"react"
]
],
"plugins": [
[
"import",
{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
],
[
"lodash"
],
[
"syntax-dynamic-import"
],
[
"transform-decorators-legacy"
],
[
"transform-class-properties",
{
"spec": false
}
],
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
]
}
}