-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "excel-to-js",
"version": "1.0.0",
"description": "Transform excel file to JS file in SW5.",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=\"development\"",
"dev": "webpack serve --mode=\"development\""
},
"author": "Charlie Xu",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/byv55f5f5/excel-to-js.git"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"process": "^0.11.10",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"stream-browserify": "^3.0.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.20.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"core-js": "^3.9.0",
"jszip": "^3.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"xlsx": "^0.16.9"
}
}