-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 949 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
{
"name": "karthikvenkaraman.in",
"version": "1.0.0",
"description": "Personal portfolio website of Karthik Venkataraman",
"main": "index.js",
"scripts": {
"install": "npm i -D sass postcss postcss-cli autoprefixer",
"build": "npm run compile-scss && npm run prefix-overwrite-css",
"compile-scss": "sass assets/scss/style.scss assets/css/style.css --style=compressed",
"compile-scss:dev": "sass assets/scss/style.scss assets/css/style.css --style=compressed --watch",
"prefix-css": "npx postcss assets/css/style.css --use autoprefixer -o assets/css/style-prefixed.css -m",
"prefix-overwrite-css": "npx postcss assets/css/style.css --use autoprefixer -r -m",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Karthik Venkataraman",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.5",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"sass": "^1.32.13"
}
}