-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
{
"name": "globefrontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev": "concurrently npm:dev:11ty npm:dev:css",
"build": "concurrently npm:build:11ty npm:build:css",
"dev:11ty": "ELEVENTY_ENV=development eleventy --serve",
"dev:css": "tailwindcss -i src/_assets/tw.css -o dist/_assets/tw.css --watch",
"build:11ty": "ELEVENTY_ENV=production eleventy",
"build:css": "tailwindcss -i src/_assets/tw.css -o dist/_assets/tw.css --minify"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^4.0.0-alpha.6",
"@11ty/eleventy-fetch": "^5.1.1",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-directory-output": "^1.0.2",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@jest/globals": "^30.2.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"alpinejs": "^3.15.3",
"concurrently": "^9.1.2",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"eleventy-plugin-svg-sprite": "^2.4.4",
"ent": "^2.2.2",
"esbuild": "^0.25.1",
"front-matter": "^4.0.2",
"jest": "^30.2.0",
"netlify-plugin-cache": "^1.0.3",
"node-fetch": "^2.6.1",
"node-ical": "^0.20.1",
"striptags": "^3.2.0",
"tailwindcss": "^3.4.17"
},
"overrides": {
"eleventy-plugin-svg-sprite": {
"@11ty/eleventy": "^4.0.0-alpha.6"
},
"glob": "^10.3.10",
"svgo": "^4.0.0"
}
}