-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (32 loc) · 1.1 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
{
"name": "backstage-talks-magazine",
"version": "1.0.0",
"description": "webpage for BackStage Talks magazine",
"main": "app.js",
"scripts": {
"watch:sass": "node-sass main.scss css/main.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass main.scss css/main.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/main.comp.css -o css/main.prefix.css",
"compress:css": "node-sass css/main.prefix.css css/main.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ng1n3/BackStage-Talks-Magazine.git"
},
"author": "34Z1",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ng1n3/BackStage-Talks-Magazine/issues"
},
"homepage": "https://github.com/Ng1n3/BackStage-Talks-Magazine#readme",
"devDependencies": {
"autoprefixer": "^10.4.14",
"concat": "^1.0.3",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0"
}
}