-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "boxdbud-io",
"private": true,
"version": "2.1.2",
"type": "module",
"license": "AGPL-3.0-or-later",
"author": "Wootehfook",
"description": "Boxdbud.io - Compare Letterboxd watchlists between friends to find movies everyone wants to watch",
"repository": {
"type": "git",
"url": "https://github.com/Wootehfook/BoxdBuddies.git"
},
"homepage": "https://boxdbud.io",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"pages:build": "npm run build",
"preview": "vite preview",
"format": "prettier --write src/**/*.{ts,tsx,css,json} functions/**/*.{ts,js} *.{json,md}",
"format:check": "prettier --check src/**/*.{ts,tsx,css,json} functions/**/*.{ts,js} *.{json,md}",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:run": "vitest run",
"test:watch": "vitest",
"test:versioning": "bash scripts/test-versioning-workflows.sh",
"clean": "rm -rf dist node_modules/.vite",
"cloudflare:dev": "wrangler pages dev dist --compatibility-date=2024-09-23",
"cloudflare:deploy": "npm run build && wrangler pages deploy dist",
"cloudflare:db:migrate": "wrangler d1 execute MOVIES_DB --file=migrations/001_create_tmdb_catalog.sql",
"cloudflare:secrets:set": "echo 'Run: wrangler secret put TMDB_API_KEY && wrangler secret put ADMIN_SECRET'",
"version:patch": "echo 'Use GitHub Actions workflow: Version Bump and Release with patch option'",
"version:minor": "echo 'Use GitHub Actions workflow: Version Bump and Release with minor option'",
"version:major": "echo 'Use GitHub Actions workflow: Version Bump and Release with major option'",
"version:current": "node -p \"require('./package.json').version\"",
"audit:prod": "npm audit --omit=dev",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.16",
"wrangler": "^4.63.0"
}
}