-
Notifications
You must be signed in to change notification settings - Fork 3
/
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": "orbit-web",
"version": "1.0.0",
"description": "The https://orbit.love website.",
"author": "Nicolas Goutay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orbit-love/orbit-web"
},
"scripts": {
"clean": "rimraf dist",
"dev:webpack": "webpack --mode development",
"dev:eleventy": "cross-env ELEVENTY_ENV=development eleventy",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build:webpack": "webpack --mode production",
"build:eleventy": "cross-env ELEVENTY_ENV=production eleventy",
"build": "run-s clean build:* --print-label && cp dist/404/index.html dist/404.html",
"watch:webpack": "webpack --mode development --watch",
"watch:eleventy": "cross-env ELEVENTY_ENV=development eleventy --serve",
"watch": "npm-run-all clean --parallel watch:*",
"start": "npm run watch"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-navigation": "^0.1.5",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@fullhuman/postcss-purgecss": "^2.2.0",
"@sanity/block-content-to-html": "^1.3.8",
"@sanity/client": "^1.149.16",
"@sanity/image-url": "^0.140.19",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"groq": "^1.149.16",
"html-minifier": "^4.0.0",
"luxon": "^1.24.1",
"markdown-it": "^11.0.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"prettier": "^2.0.5",
"svg-sprite": "^1.5.0",
"tailwindcss": "^2.0.3",
"terser-webpack-plugin": "^3.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/typography": "^0.4.0",
"@tailwindcss/ui": "^0.7.2",
"airtable": "^0.7.1",
"alpinejs": "^2.3.5",
"email-validator": "^2.0.4",
"focus-visible": "^5.1.0"
}
}