-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.27 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
{
"name": "myportfolio",
"version": "1.0.0",
"description": "This is a website for a fictional cafe eatery.",
"main": "index.html",
"scripts": {
"build": "npm run clean && npm run imagemin && npm run copyfonts && npm run usemin",
"clean": "rimraf dist",
"copyfonts": "copyfiles -f node_modules/font-awesome/fonts/* dist/fonts",
"imagemin": "imagemin img/* -o dist/img",
"lite": "lite-server",
"scss": "node-sass -o css/ css/",
"start": "npm run watch:all",
"test": "echo \"Error: no test specified\" && exit 1",
"usemin": "usemin menu.html -d dist --htmlmin -o dist/menu.html && usemin contact.html -d dist --htmlmin -o dist/contact.html && usemin about.html -d dist --htmlmin -o dist/about.html && usemin index.html -d dist --htmlmin -o dist/index.html",
"watch:scss": "onchange \"css/*.scss\" -- npm run scss",
"watch:all": "parallelshell \"npm run watch:scss\" \"npm run lite\""
},
"keywords": [],
"author": "Darrick Fauvel",
"license": "ISC",
"devDependencies": {
"copyfiles": "^2.2.0",
"imagemin-cli": "^5.1.0",
"lite-server": "^2.6.1",
"node-sass": "^4.14.1",
"onchange": "^7.0.0",
"parallelshell": "3.0.1",
"rimraf": "^3.0.2",
"usemin-cli": "^0.6.0"
},
"dependencies": {
"npm": "^7.23.0"
}
}