-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 865 Bytes
/
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
{
"name": "portfolio",
"version": "1.0.0",
"description": "personal portfolio",
"main": "index.html",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:css": "node-sass sass/main.scss css/style.comp.css",
"compress:css": "node-sass css/style.comp.css css/style.css --output-style compressed",
"build:css": "npm-run-all --parallel compile:css compress:css",
"build":"npm-run-all --parallel compile:css compress:css"
},
"keywords": [
"Samip",
"Lamsal"
],
"author": "Samip Lamsal",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.6",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1"
},
"dependencies": {
"live-server": "^1.2.1",
"node-sass": "^9.0.0"
}
}