-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
Β·72 lines (72 loc) Β· 2.46 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
{
"name": "website",
"version": "2.1.12",
"description": "Benjamin Grant's primary online presence",
"author": "Benjamin Grant <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "yarn lint",
"clean": "rm -rf dist",
"eleventy:default": "npx eleventy",
"eleventy:watch": "npx eleventy --watch",
"styles:prod": "sass src/css/:dist/css/ && postcss ./dist/css/*.css --replace",
"styles:dev": "sass src/css/:dist/css/ && postcss ./dist/css/*.css --replace",
"scripts:prod": "webpack --mode=production",
"scripts:dev": "webpack --mode=development",
"serve": "light-server -c .lightserverrc",
"dev": "ELEVENTY_ENV=development npm-run-all clean styles:dev scripts:dev eleventy:default --parallel eleventy:watch serve --print-label",
"dev:debug": "DEBUG=* npm run dev",
"build": "run-s clean styles:prod scripts:prod eleventy:default --print-label",
"lint": "eslint --ext .js src",
"postbuild:lint": "jsonlint dist/*.json -q",
"snyk-protect": "snyk protect",
"build-postbuild": "yarn run build postbuild:lint"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.2",
"graphlib": "^2.1.8",
"jsonlint": "^1.6.3",
"light-server": "2.6.4"
},
"dependencies": {
"@11ty/eleventy": "1.0.0",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@fortawesome/fontawesome-pro": "^6.0.0-beta3",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta3",
"@fortawesome/free-brands-svg-icons": "^6.0.0-beta3",
"@fortawesome/pro-duotone-svg-icons": "^6.0.0-beta3",
"@fortawesome/pro-thin-svg-icons": "^6.0.0-beta3",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"acorn": "^7.1.1",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.0.6",
"browser-reset": "^1.0.5",
"cssnano": "^5.0.0",
"cssnano-preset-advanced": "^5.0.0",
"eleventy-plugin-lazyimages": "^2.1.2",
"eleventy-plugin-reading-time": "^0.0.1",
"lazysizes": "^5.2.2",
"leadingzero": "^1.0.0",
"node-fetch": "2.6.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.13",
"postcss-cli": "^8.0.0",
"postcss-import": "13.0.0",
"sass": "^1.47.0",
"snyk": "^1.848.0",
"webpack": "^5.1.1",
"webpack-cli": "^4.0.0"
},
"snyk": true,
"browserslist": [
"> 0.5%",
"Explorer >= 10",
"last 2 versions",
"not dead"
]
}