-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 972 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 972 Bytes
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
{
"name": "main",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "eleventy --config=./configs/eleventy.config.dev.js --serve --quiet",
"11ty": "eleventy --config=./configs/eleventy.config.prod.js",
"minify": "gulp build -f ./configs/gulpfile.js",
"build": "rimraf dist && npm run 11ty && npm run minify",
"gen:site": "node ./scripts/new-site.js"
},
"keywords": [],
"author": "Bricks666",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.4",
"html-minifier-terser": "^7.1.0",
"nunjucks": "^3.2.3",
"postcss-csso": "^6.0.1",
"postcss-import": "^15.1.0",
"postcss-media-minmax": "^5.0.0",
"rimraf": "^4.3.1",
"rollup": "^3.19.1"
}
}