-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.06 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
53
54
55
56
57
58
{
"name": "node-js-fundamentals",
"version": "1.0.0",
"description": "Nuestro primer proyecto en Node JS",
"main": "index.html",
"scripts": {
"dev": "lite-server",
"start": "concurrently \"npm run watch:scss\" \"npm run dev \" ",
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass -o assets/css/ assets/css/",
"watch:scss": "onchange assets/css/*.scss -- npm run scss",
"clean": "rimraf dist",
"imagemin": "imagemin assets/img/* --out-dir dist/assets/img",
"usemin": "usemin index.html -d dist --htmlmin -o dist/index.html && usemin about.html -d dist --htmlmin -o dist/about.html && usemin prices.html -d dist --htmlmin -o dist/prices.html && usemin contact.html -d dist --htmlmin -o dist/contact.html",
"build": "npm run clean && npm run scss && npm run imagemin && npm run usemin"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/YanniMartinez/Node-JS-Fundamentals.git"
},
"author": "Yanni",
"license": "ISC",
"bugs": {
"url": "git remote add origin git@github.com:YanniMartinez/Boot-Strap-Fundamentals.git/issues"
},
"homepage": "git remote add origin git@github.com:YanniMartinez/Boot-Strap-Fundamentals.git#readme",
"devDependencies": {
"cssmin": "^0.4.3",
"grunt": "^1.0.3",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-filerev": "^2.3.1",
"grunt-usemin": "^3.1.1",
"htmlmin": "0.0.7",
"jit-grunt": "^0.10.0",
"lite-server": "^2.6.1",
"node-sass": "^6.0.1",
"onchange": "^4.1.0",
"rimraf": "^2.6.2",
"time-grunt": "^2.0.0",
"uglifyjs": "^2.4.11",
"usemin-cli": "^0.6.0"
},
"dependencies": {
"bootstrap": "^4.6.0",
"concurrently": "^6.2.1",
"jquery": "^3.6.0",
"open-iconic": "^1.1.1",
"popper.js": "^1.16.1"
}
}