-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "jkguidaven.github.io",
"version": "1.0.0",
"description": "My personal website",
"scripts": {
"lint:eslint": "eslint --fix",
"lint:stylelint": "stylelint --fix \"source/**/*.{css,scss}\"",
"lint": "yarn lint:eslint && yarn lint:stylelint",
"build": "yarn lint && gulp build",
"deploy": "yarn build && gulp deploy",
"watch": "gulp watch",
"serve": "live-server dest --port=8080 -host=127.0.0.1",
"start": "yarn build && npm-run-all --parallel serve watch"
},
"author": "James Kenneth A. Guidaven",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"autoprefixer": "^9.8.0",
"bulma": "^0.8.2",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cached": "^1.1.1",
"gulp-data": "^1.3.1",
"gulp-flatmap": "^1.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-inject": "3.0.0",
"gulp-nunjucks-render": "^2.2.3",
"gulp-postcss": "^8.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^4.1.0",
"gulp-terser": "^1.2.0",
"gulp-watch": "^5.0.1",
"live-server": "^1.2.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss-uncss": "^0.17.0",
"prettier": "^2.0.5",
"stylelint": "^13.4.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2",
"uncss": "^0.17.3"
},
"dependencies": {
"lazysizes": "^5.2.2"
}
}