-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1000 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1000 Bytes
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
{
"name": "witcher",
"version": "1.0.0",
"description": "landing page for the game",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass -w sass/main.scss css/style.css",
"devserver": "live-server",
"startTheDev": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass sass/main.scss css/style.comp.css",
"concat:css": "concat -o css/style.concat.css css/icon-font.css css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last versions' css/style.concat.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 concat:css prefix:css compress:css"
},
"author": "Sevket",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.1",
"concat": "^1.0.3",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1"
},
"dependencies": {
"postcss-scss": "^3.0.4"
}
}