-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "ikegdivs.github.io",
"version": "1.0.0",
"description": "github pages website",
"main": "index.html",
"scripts": {
"start": "npm run lite",
"test": "echo \"Error: no test specified\" && exit 1",
"lite": "lite-server",
"scss": "node-sass -o css/ css/",
"watch:scss": "onchange \"css/*.scss\" -- npm run scss",
"clean": "rimraf dist",
"copyfonts": "copyfiles -f node_modules/font-awesome/fonts/* dist/fonts",
"imagemin": "imagemin img/* --out-dir=\"dist/img\"",
"usemin": "usemin index.html -d dist --htmlmin -o dist/index.html && usemin js_append/comic.html -d dist/js_append --htmlmin -o dist/js_append/comic.html",
"build": "npm run clean && npm run imagemin && npm run copyfonts && npm run usemin",
"watch:all": "parallelshell \"npm run watch:scss\" \"npm run lite\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikegdivs/ikegdivs.github.io.git"
},
"author": "Issac Gardner",
"license": "ISC",
"bugs": {
"url": "https://github.com/ikegdivs/ikegdivs.github.io/issues"
},
"homepage": "https://github.com/ikegdivs/ikegdivs.github.io#readme",
"devDependencies": {
"cssmin": "^0.4.3",
"htmlmin": "^0.0.7",
"lite-server": "^2.6.1",
"node-sass": "^5.0.0",
"onchange": "^3.3.0",
"parallelshell": "^3.0.1",
"rimraf": "^2.6.2",
"uglifyjs": "^2.4.11",
"usemin-cli": "^0.5.1"
},
"dependencies": {
"bootstrap": "^4.0.0",
"bootstrap-icons": "^1.4.0",
"bootstrap-social": "^5.1.1",
"d3": "^6.5.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"moment": "^2.29.1",
"popper.js": "^1.12.9",
"prismjs": "^1.23.0",
"react-transition-group": "2.3.0",
"tabulator-tables": "^4.9.3"
}
}