-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "unlockopen.com",
"version": "3.0.0",
"description": "UnlockOpen website v3",
"scripts": {
"build-dev:webpack": "webpack",
"watch:webpack": "webpack --watch",
"watch:eleventy": "cross-env ELEVENTY_ENV=development eleventy --serve",
"dev": "npm-run-all clean build-dev:webpack --parallel watch:*",
"build:webpack": "cross-env NODE_ENV=production webpack --mode production",
"build:eleventy": "cross-env ELEVENTY_ENV=production eleventy",
"build": "run-s clean build:*",
"serve:local": "serve _site",
"serve": "run-s build serve:local",
"clean": "rimraf _site",
"format:js": "prettier '**/*.js' --write && eslint '**/*.js' --fix",
"format:json": "prettier '**/*.json' --write",
"format": "run-s format:*",
"lint": "eslint --ext .js ."
},
"license": "UNLICENSED",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"autoprefixer": "^10.2.6",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"cssnano": "^5.0.4",
"date-fns": "^2.21.3",
"eleventy-plugin-lazyimages": "^2.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"file-loader": "^6.2.0",
"glob": "^7.1.7",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.3.8",
"image-webpack-loader": "^7.0.1",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^5.3.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"tailwindcss": "^2.1.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
}
}