-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.25 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
{
"name": "websitemodel",
"version": "1.0.0",
"description": "Website model for making expirements",
"main": "index.js",
"scripts": {
"watch:js": "webpack --watch --mode development --env development",
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"devserver": "live-server --no-browser --wait=100",
"start": "npm-run-all --parallel devserver watch:sass watch:js",
"compile:sass": "node-sass sass/main.scss css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.comp.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css",
"build:js": "webpack --mode production --env production",
"build": "npm-run-all build:css build:js"
},
"author": "Author_Name",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"autoprefixer": "^7.1.4",
"concat": "^1.0.3",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss-cli": "^6.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4"
}
}