-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 884 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 884 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
{
"type": "module",
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"alpinejs": "^3.15.3",
"date-fns": "^4.1.0",
"esbuild": "^0.27.2",
"notyf": "^3.10.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"prettier-plugin-jinja-template": "^2.1.0",
"typescript": "^5.9.3"
},
"scripts": {
"build:js": "node scripts/build-js.mjs",
"build:css": "npx postcss src/app/frontend/assets/global.css -o src/app/frontend/static/styles.min.css --env production",
"build:all": "npm run build:js && npm run build:css",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}