-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.14 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.14 KB
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
{
"name": "fit-fuel",
"version": "1.0.0",
"description": "Fit Fuel - Website for ordering healthy food",
"main": "index.js",
"scripts": {
"watch:sass": "sass sass/main.scss static/css/style.css -w",
"start": "npm-run-all --parallel live-server watch:sass",
"compile:sass": "sass sass/main.scss static/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' static/css/style.comp.css -o static/css/style.prefix.css",
"compress:css": "sass static/css/style.prefix.css static/css/style.css --style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css",
"django": "python manage.py runserver",
"browser-sync": "browser-sync start --proxy \"http://127.0.0.1:8000\" --files \"static/css/style.css\" --files \"food/templates/**/*.html, templates/**/*.html\"",
"dev": "npm-run-all --parallel watch:sass browser-sync"
},
"author": "Stefan Krsmanovic",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.21",
"browser-sync": "^3.0.4",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.1",
"sass": "^1.89.1"
}
}