-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.74 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
{
"name": "seriesscape",
"version": "0.3.0-dev",
"description": "SeriesScape is a simple, personal, locally-run web application designed to help you keep track of movies and TV shows you want to watch or have already watched.",
"homepage": "https://github.com/Exonymos/SeriesScape",
"main": "index.js",
"scripts": {
"build:css": "npx @tailwindcss/cli -i ./apps/desktop/src/core/static/css/input.css -o ./apps/desktop/src/core/static/css/output.css -m --optimize",
"watch:css": "npx @tailwindcss/cli -i ./apps/desktop/src/core/static/css/input.css -o ./apps/desktop/src/core/static/css/output.css -w",
"build:js": "npx esbuild apps/desktop/src/core/static/js/app.js --bundle --outfile=apps/desktop/src/core/static/js/bundle.js --minify",
"watch:js": "npx esbuild apps/desktop/src/core/static/js/app.js --bundle --outfile=apps/desktop/src/core/static/js/bundle.js --watch --minify",
"lint:js": "eslint apps/desktop/src/core/static/js/",
"lint:js:fix": "eslint apps/desktop/src/core/static/js/ --fix",
"format:check": "prettier . --check",
"format:write": "prettier . --write"
},
"keywords": [
"flask",
"htmx",
"sqlite",
"webapp",
"movies",
"tv shows",
"tracking",
"personal",
"media",
"watchlist",
"local"
],
"author": "Exonymos",
"license": "GPL-3.0-only",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/cli": "^4.2.2",
"autoprefixer": "^10.4.27",
"daisyui": "^5.5.19",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2"
}
}