-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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": "prj-excel",
"version": "1.0.0",
"description": "Pure Javasctipt Excel Application",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack serve --hot",
"build": "cross-env NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pabloid64/excel.git"
},
"keywords": [
"js",
"javascript",
"excel"
],
"author": "Pavel Chernyshov",
"license": "ISC",
"bugs": {
"url": "https://github.com/pabloid64/excel/issues"
},
"homepage": "https://github.com/pabloid64/excel#readme",
"private": true,
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.3.6",
"sass": "^1.32.7",
"sass-loader": "^11.0.1",
"webpack": "^5.23.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"normalize.css": "^8.0.1"
}
}