-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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": "about-me",
"version": "1.0.0",
"description": "about-me",
"main": "index.js",
"scripts": {
"watch-sass": "node-sass sass/style.scss css/style.css -w",
"live-server": "live-server",
"start": "npm-run-all --parallel live-server watch-sass",
"compile-sass": "node-sass sass/style.scss css/style.comp.css",
"concat-css": "concat -o css/style.concat.css css/style.comp.css",
"prefix-css": "postcss --use autoprefixer -b 'last 10 version' 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saeed0920/start-css-modern-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saeed0920/start-css-modern-project/issues"
},
"homepage": "https://github.com/saeed0920/start-css-modern-project#readme",
"devDependencies": {
"autoprefixer": "^10.4.0",
"concat": "^1.0.3",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.0.2"
},
"dependencies": {
"live-server": "^1.2.1"
}
}