-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"autoprefixer": "^10.4.13",
"axios": "^1.3.2",
"cssnano": "^5.1.14",
"dotenv": "^16.0.3",
"html-minifier": "^4.0.0",
"luxon": "^3.2.1",
"node-fetch": "^3.3.0",
"postcss": "^8.4.21",
"postcss-color-mix": "^1.1.0",
"postcss-comment": "^2.0.0",
"postcss-import": "^15.1.0",
"postcss-mixins": "^9.0.4",
"postcss-simple-vars": "^7.0.1",
"precss": "^4.0.0",
"uglify-js": "^3.17.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"cross-env": "7.0.3"
}
}