-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "sample-portfolio-site",
"version": "1.0.0",
"description": "A sample Bootstrap site for deployment demonstrations.",
"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",
"start": "npm run lite",
"test": "echo \"Error: no test specified\" && exit 1",
"usemin": "usemin about.html -d dist --htmlmin -o dist/about.html && usemin index.html -d dist --htmlmin -o dist/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minaelee/sample-portfolio-site.git"
},
"author": "Minae Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/minaelee/sample-portfolio-site/issues"
},
"homepage": "https://github.com/minaelee/sample-portfolio-site#readme",
"devDependencies": {
"copyfiles": "^2.2.0",
"imagemin-cli": "^5.1.0",
"lite-server": "^2.5.4",
"rimraf": "^3.0.2",
"usemin-cli": "^0.6.0"
},
"dependencies": {
"bootstrap": "^4.5.2",
"bootstrap-social": "^5.1.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
}
}