-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"devDependencies": {
"sass": "^1.72.0",
"vite": "^5.2.10"
},
"type": "module",
"name": "space-tourism-website-main",
"description": "Portfolio Project",
"version": "1.0.0",
"dependencies": {
"animejs": "^3.2.2",
"anymatch": "^3.1.3",
"binary-extensions": "^2.3.0",
"braces": "^3.0.2",
"chokidar": "^3.6.0",
"fill-range": "^7.0.1",
"glob-parent": "^5.1.2",
"immutable": "^4.3.5",
"is-binary-path": "^2.1.0",
"is-extglob": "^2.1.1",
"is-glob": "^4.0.3",
"is-number": "^7.0.0",
"normalize-path": "^3.0.0",
"picomatch": "^2.3.1",
"readdirp": "^3.6.0",
"source-map-js": "^1.2.0",
"to-regex-range": "^5.0.1"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --port 8080",
"watch:sass": "node-sass starter-code/sass/home.scss starter-code/css/home.css -w",
"watch:sassDestinations": "node-sass starter-code/sass/destination.scss starter-code/css/destinations.css -w",
"watch:sassTechnologies": "node-sass starter-code/sass/technologies.scss starter-code/css/technologies.css -w",
"watch:sassCrew": "node-sass starter-code/sass/crew.scss starter-code/css/crew.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass starter-code/sass/home.scss css/style.comp.css",
"compile:sass:home": "node-sass starter-code/sass/home.scss css/home.css",
"compile:sass:destination": "node-sass starter-code/sass/destination.scss starter-code/css/destinations.css",
"compile:sass:technologies": "node-sass starter-code/sass/technologie s.scss css/technologies.css",
"compile:sass:crew": "node-sass starter-code/sass/crew.scss css/crew.css",
"concat:css": "concat -o css/style.concat.css css/icon-font.css css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.concat.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass:home compile:sass:destination compile:sass:technologies \"compile:sass:crew\" concat:css prefix:css compress:css"
},
"keywords": [],
"author": "",
"license": "ISC"
}