-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "excel-course",
"version": "1.0.0",
"description": "Web Excel application",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "cross-env NODE_ENV=development webpack serve --open",
"build": "cross-env NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nblackninja/excel-course.git"
},
"keywords": [
"js",
"javascript",
"excel"
],
"author": "Yudin Nikita <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nblackninja/excel-course/issues"
},
"homepage": "https://github.com/nblackninja/excel-course#readme",
"private": true,
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.2.0",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"cross-env": "^7.0.3"
}
}