-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·36 lines (36 loc) · 1.16 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
{
"name": "ecommerce",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:start": "yarn run build && yarn run favicon && serve ./build",
"dev:live": "yarn run build && yarn run favicon && webpack serve",
"build": "yarn run sass && webpack",
"sass": "clear && node-sass ./src/assets/sass/_index.scss ./src/assets/css/main.css",
"favicon": "cp ./src/assets/images/favicon.png ./build/"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.8.1",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"regenerator-runtime": "^0.13.7",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.1"
}
}