-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"title": "Liam Deacon's Profile",
"name": "liam-deacon-github-io",
"version": "0.0.1",
"scripts": {
"build": "npm run clean && npm run build:scss && npm run build:nunjucks && npm run build:copy",
"build:copy": "cp -r src/assets dist/ && cp -r src/js dist/",
"build:prod": "npm run format && npm run build",
"build:scss": "./node_modules/.bin/sass -I src/scss src/scss/:dist/css/",
"build:nunjucks": "./node_modules/.bin/gulp nunjucks",
"clean": "node scripts/clean.js",
"deploy": "npm run build:prod && npm run deploy:gh-pages",
"deploy:gh-pages": "git subtree push --prefix dist origin gh-pages",
"format": "npm run format:prettier && npm run format:html",
"format:prettier": "node_modules/.bin/prettier --config .prettierrc \"src/**/*.{ts,css,less,js}\" --write",
"format:html": "node scripts/glob-ls.js 'src/**/*.html' 'build/**/*.html.ejs' | xargs node_modules/.bin/html-beautify -r",
"scss": "./node_modules/.bin/sass --watch src/scss -o dist/css",
"start": "npm run build && npm run serve",
"start:debug": "npm run build && npm run serve",
"serve": "./node_modules/.bin/serve dist/ -l 9999"
},
"description": "A modern protfolio site written by Liam Deacon.",
"keywords": [
"css",
"sass",
"scss",
"html",
"responsive",
"theme",
"template"
],
"homepage": "https://github.com/Liam-Deacon/",
"bugs": {
"url": "https://github.com/Liam-Deacon/Liam-Deacon.github.io.git/issues",
"email": "[email protected]"
},
"license": "GPL v3.0",
"author": "Liam Deacon",
"contributors": [
"Liam Deacon ([email protected])"
],
"repository": {
"type": "git",
"url": "https://github.com/Liam-Deacon/Liam-Deacon.github.io.git"
},
"dependencies": {
"bootstrap": "4.5.0"
},
"devDependencies": {
"autoprefixer": "9.8.0",
"browser-sync": "2.26.7",
"browserify": "^16.5.1",
"chokidar": "3.4.0",
"concurrently": "5.2.0",
"ecstatic": "^4.1.4",
"grunt": "*",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "^2.1.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-dom-munger": "^3.4.0",
"grunt-include-source": "^1.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.1",
"gulp-embedlr": "^0.5.2",
"gulp-imagemin": "^7.1.0",
"gulp-livereload": "^4.0.2",
"gulp-minify-css": "^1.2.4",
"gulp-nodemon": "^2.5.0",
"gulp-nunjucks-render": "^2.2.3",
"gulp-run-command": "0.0.10",
"gulp-sass": "^4.1.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"html-minifier": "^4.0.0",
"js-beautify": "^1.11.0",
"postcss": "7.0.32",
"prettier": "^2.0.5",
"sass": "^1.26.8",
"serve": "^11.3.2",
"shelljs": "0.8.4",
"tiny-lr": "^1.1.1",
"uglify-js": "^3.10.0",
"upath": "1.2.0"
}
}