-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (35 loc) · 1.07 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
28
29
30
31
32
33
34
35
36
{
"name": "nexter",
"version": "1.0.0",
"description": "Nexter webpage - A project from Jonas Schmedtmann's Udemy course.",
"main": "index.js",
"scripts": {
"sass": "sass --watch sass/main.scss:css/style.css",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver sass",
"compile-sass": "sass sass/main.scss css/style.unprefixed.css",
"prefix-css": "postcss --use autoprefixer -b 'last 10 versions' css/style.unprefixed.css -o css/style.prefix.css",
"compress-css": "sass css/style.prefix.css css/style.css --style compressed",
"build": "npm-run-all compile-sass prefix-css compress-css"
},
"repository": {
"type": "git",
"url": "https://github.com/BlockJakub/nexter.git"
},
"keywords": [
"travel",
"landing-page",
"sass",
"css",
"html"
],
"author": "Jonas Schmedtmann (Course Instructor) | Modified by Kuba",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.20",
"concat": "^1.0.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"sass": "^1.85.1"
}
}