-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.19 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": "graphite-design-system-site",
"version": "0.1.0",
"description": "Graphite Design System site",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/paqtcom/graphite-design-system-site.git"
},
"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": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^2.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"autoprefixer": "^10.4.4",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"date-fns": "^2.27.0",
"eleventy-plugin-lazyimages": "^2.1.2",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"glob": "^8.0.1",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"image-webpack-loader": "^8.1.0",
"lint-staged": "^12.3.7",
"markdown-it-anchor": "^8.6.2",
"markdown-it-github-headings": "^2.0.0",
"markdown-it-table-of-contents": "^0.6.0",
"mini-css-extract-plugin": "^2.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"tailwindcss": "^3.0.23",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
}
}