-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.08 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
{
"name": "sito-leo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf public",
"serve:tailwind": "tailwindcss -i src/assets/styles/_main.css -o public/assets/styles/tailwind.css -c ./tailwind.config.js --watch",
"serve:sass": "sass --watch src/assets/styles:public/assets/styles",
"serve:webpack": "webpack --mode development --watch",
"serve:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"serve": "npm-run-all clean --parallel serve:*",
"build:tailwind": "NODE_ENV=production tailwindcss -i src/assets/styles/_main.css -o public/assets/styles/tailwind.css --minify",
"build:sass": "sass src/assets/styles:public/assets/styles",
"build:webpack": "webpack --mode production",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build": "run-s clean build:*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.1",
"autoprefixer": "^10.4.2",
"axios": "^0.21.4",
"classnames": "^2.3.1",
"css-loader": "^6.6.0",
"eleventy-google-fonts": "^0.1.0",
"eleventy-plugin-embed-everything": "^1.14.0",
"eleventy-plugin-time-to-read": "^1.1.1",
"eleventy-plugin-toc": "^1.1.5",
"html-minifier": "^4.0.0",
"internal-ip": "^7.0.0",
"linkedom": "^0.14.0",
"lodash": "^4.17.21",
"lodash.escape": "^4.0.1",
"luxon": "^2.3.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"mini-css-extract-plugin": "^2.5.3",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"portfinder-sync": "^0.0.2",
"postcss-loader": "^6.2.1",
"sass": "^1.49.7",
"slugify": "^1.6.5",
"tailwindcss": "^3.0.18",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}