-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.34 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
{
"name": "nucampsite",
"version": "1.0.0",
"description": "This is a website for the fictional campsites review site NuCamp.",
"main": "index.html",
"scripts": {
"lite": "lite-server",
"scss": "node-sass -o css/ css/",
"watch:scss": "onchange 'css/*.scss' -- npm run scss",
"watch:all": "parallelshell 'npm run watch:scss' 'npm run lite'",
"copyfonts": "copyfiles -f node_modules/font-awesome/fonts/* dist/fonts",
"imagemin": "imagemin img/* -o dist/img",
"usemin": "usemin contactus.html -d dist --htmlmin -o dist/contactus.html && usemin aboutus.html -d dist --htmlmin -o dist/aboutus.html && usemin index.html -d dist --htmlmin -o dist/index.html",
"clean": "rimraf dist",
"build": "npm run clean && npm run imagemin && npm run copyfonts && npm run usemin",
"start": "npm run watch:all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ray Messina",
"license": "ISC",
"devDependencies": {
"copyfiles": "^2.2.0",
"imagemin-cli": "^5.1.0",
"lite-server": "^2.5.4",
"node-sass": "^4.14.1",
"onchange": "^7.0.0",
"parallelshell": "3.0.1",
"rimraf": "^3.0.2",
"usemin-cli": "^0.6.0"
},
"dependencies": {
"bootstrap": "^4.5.0",
"bootstrap-social": "^5.1.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
}
}