-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.07 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
{
"name": "dots-website",
"version": "1.0.0",
"description": "Decentral Patterns Website",
"repository": {
"type": "git",
"url": "https://github.com/simplysecure/dots-website"
},
"author": "Simply Secure",
"license": "CC0-1.0",
"private": true,
"scripts": {
"production": "npm run build",
"build": "cross-env NODE_ENV=production npm-run-all -l clean build:*",
"build:eleventy": "eleventy --config=11ty/eleventy.config.js",
"build:webpack": "webpack",
"clean": "rimraf dist",
"lint": "eslint .",
"prettier": "prettier --write .",
"start": "cross-env NODE_ENV=development npm-run-all --silent clean --parallel start:*",
"start:eleventy": "ELEVENTY_ENV=development eleventy --watch --quiet --config=11ty/eleventy.config.js",
"start:webpack": "webpack serve",
"start:browser-sync": "browser-sync start --proxy 'localhost:8081' --files dist --browser chromium --logLevel silent"
},
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"tailwindcss": "^1.9.5"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.1.3",
"@f3rno/markdown-it-wikilinks": "^1.0.3",
"autoprefixer": "^10.2.4",
"browser-sync": "^2.26.14",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"html-minifier": "^4.0.0",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^7.0.2",
"markdown-it-container": "^3.0.0",
"markdown-it-footnote": "^3.0.2",
"mini-css-extract-plugin": "^1.3.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-loader": "^4.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.32.7",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"engines": {
"node": ">=12.0.0"
}
}