-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 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
37
38
39
40
41
42
{
"name": "tinyhouserentals",
"version": "1.0.0",
"description": "tiny house rental website",
"main": "index.js",
"dependencies": {
"bootstrap": "^4.5.2",
"bootstrap-social": "^5.1.1",
"create-react-app": "^1.2.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
},
"scripts": {
"lite": "lite-server",
"start": "npm run watch:all",
"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 images/* -o dist/images",
"clean": "rimraf dist",
"build": "npm run clean && npm run imagemin && npm run copyfonts && npm run usemin",
"usemin": "usemin index.html -d dist --htmlmin -o dist/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/codeNcoffee/Bootstrap-4-nucamp"
},
"author": "Justin S",
"license": "ISC",
"devDependencies": {
"copyfiles": "^2.2.0",
"imagemin-cli": "^7.0.0",
"lite-server": "^2.6.1",
"node-sass": "^6.0.1",
"onchange": "^7.0.0",
"parallelshell": "3.0.1",
"rimraf": "^3.0.2",
"usemin-cli": "^0.0.7"
}
}