-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.51 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
{
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@eslint/js": "^9.31.0",
"concurrently": "^9.2.1",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^16.3.0",
"lerna": "^8.2.3",
"prettier": "^3.6.2",
"slugify": "^1.6.6"
},
"name": "root",
"private": true,
"scripts": {
"format": "prettier --config .github/linters/.prettierrc --write \"**/*.{js,json,yaml,yml,css,md}\"",
"check": "prettier --config .github/linters/.prettierrc --check \"**/*.{js,json,yaml,yml,css,md}\"",
"lint": "eslint --config .github/linters/eslint.config.mjs .",
"lint_fix": "eslint --config .github/linters/eslint.config.mjs . --fix",
"test": "npx lerna run test --stream",
"dev": "vite",
"vite-build": "vite build",
"start": "concurrently \"npm run tailwindcss:watch\" \"npx @11ty/eleventy --serve --input=frontend\"",
"build": "npm run tailwindcss:build && npx @11ty/eleventy --input=frontend",
"tailwindcss:build": "tailwindcss -i frontend/tailwind.css -o frontend/assets/tailwind.css",
"tailwindcss:build2": "tailwindcss -i frontend/tailwind.css -o _site/assets/tailwind.css",
"tailwindcss:watch": "tailwindcss -i frontend/tailwind.css -o frontend/assets/tailwind.css --watch",
"tailwindcss:watch2": "tailwindcss -i frontend/tailwind.css -o _site/assets/tailwind.css --watch"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@tailwindcss/cli": "^4.1.11",
"luxon": "^3.7.1",
"tailwindcss": "^4.1.11"
}
}