-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "EleventyOne",
"version": "3.0.0",
"description": "A project bootstrap for Eleventy sites. With pipelines for PostCSS, JavaScript, and serverless functions",
"author": "Phil Hawksworth",
"license": "MIT",
"scripts": {
"start": "npm run dev",
"dev": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build": "cross-env ELEVENTY_ENV=prod eleventy",
"seed": "cross-env ELEVENTY_ENV=seed eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/philhawksworth/eleventyone"
},
"dependencies": {
"@11ty/eleventy": "^0.8.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"autoprefixer": "^9.6.0",
"axios": "^0.21.1",
"cssnano": "^4.1.10",
"dotenv": "^8.0.0",
"html-minifier": "^4.0.0",
"luxon": "^1.16.0",
"node-fetch": "^2.6.1",
"postcss": "^7.0.17",
"postcss-color-mix": "^1.1.0",
"postcss-comment": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.1",
"postcss-simple-vars": "^5.0.2",
"precss": "^4.0.0",
"uglify-js": "^3.6.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"cross-env": "5.2.0"
}
}