-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "noodles",
"version": "1.0.0",
"description": "await fetch",
"scripts": {
"clean": "rm -rf dist",
"css": "cross-env NODE_ENV=production tailwindcss -i ./main.css -o ./dist/css/main.css --minify",
"js": "terser main.js -o dist/main.js",
"build": "eleventy && npm run css && npm run js",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"start": "eleventy --serve",
"debug": "DEBUG=* eleventy"
},
"author": {
"name": "thjxs",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"cssnano": "^5.0.2",
"html-minifier": "^4.0.0",
"image-size": "^1.0.0",
"luxon": "^2.0.2",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^8.1.0",
"markdown-it-implicit-figures": "^0.10.0",
"minify-xml": "^3.3.1",
"tailwindcss": "^3.0.23",
"terser": "^5.7.0"
}
}