-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.23 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
{
"name": "mcurank",
"version": "1.0.0",
"description": "mcu title ranking application",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass static/mcurank/sass/main.scss static/mcurank/css/style.css -w",
"devserver": "live-server",
"start:portfolio": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass static/mcurank/sass/main.scss static/mcurank/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b \"last 10 versions\" static/mcurank/css/style.comp.css -o static/mcurank/css/style.prefix.css",
"compress:css": "node-sass static/mcurank/css/style.prefix.css static/mcurank/css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justnclrk/mcurank.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/justnclrk/mcurank/issues"
},
"homepage": "https://github.com/justnclrk/mcurank#readme",
"devDependencies": {
"autoprefixer": "^10.0.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.1.0",
"postcss-scss": "^3.0.2" },
"dependencies": {
"live-server": "^1.2.1"
}
}