-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.53 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
73
74
75
76
77
{
"name": "eleventy-starter",
"version": "1.0.0",
"description": "An 11ty starter project.",
"author": "Ryan Scherler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eastslopestudio/eleventy-starter"
},
"_moduleAliases": {
"@config": ".config.js"
},
"scripts": {
"clean": "rimraf '{dist,.picture.cache}'",
"dev:webpack": "webpack --mode development",
"dev:eleventy": "cross-env ELEVENTY_ENV=development DEBUG=Eleventy* 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",
"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",
"start:langs": "npm-run-all clean build-langs watch",
"eleventy": "ELEVENTY_ENV=development npx eleventy --serve",
"build-langs": "node ./scripts/buildLangs.js"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-inclusive-language": "^1.0.3",
"@11ty/eleventy-plugin-rss": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@tailwindcss/typography": "^0.2.0",
"@tailwindcss/ui": "^0.5.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"crypto": "^1.0.1",
"cssnano": "^6.0.3",
"deasync": "^0.1.20",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"html-minifier": "^4.0.0",
"jsonfile": "^6.0.1",
"luxon": "^1.25.0",
"markdown-it": "^14.0.0",
"markdown-it-imsize": "^2.0.1",
"module-alias": "^2.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"postcss-nested": "^6.0.1",
"prettier": "^2.1.1",
"sharp": "^0.33.2",
"svg-sprite": "^2.0.2",
"tailwindcss": "^1.7.6",
"tailwindcss-gradients": "^3.0.0",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"alpinejs": "^2.6.0",
"focus-visible": "^5.1.0",
"glob": "^10.3.10",
"intl-messageformat": "^10.5.11"
}
}