-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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": "my-website",
"version": "1.0.0",
"description": "A landing page for Simeon Udoh.",
"main": "script.js",
"scripts": {
"watch:sass": "node-sass -w sass/main.scss css/style.css ",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass sass/main.scss css/styles.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/styles.comp.css -o css/styles.prefix.css",
"compress:css": "node-sass css/styles.prefix.css css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "https://github.com/simeon4real/projects/tree/master/my-website"
},
"keywords": [
"Frontend",
"web-dev",
"developer"
],
"author": "Simeon Udoh",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.8.5",
"concat": "^1.0.3",
"live-server": "^1.2.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1"
}
}