-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.08 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.08 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
{
"name": "overdb",
"version": "0.2.0",
"author": "Dara Dermody",
"description": "Web application that allows people to easily follow their favourite cast and crew in movies",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/daradermody/OverDB.git"
},
"scripts": {
"start": "NODE_ENV=production bun run src/index.ts",
"dev": "NODE_ENV=development bun --watch run src/index.ts",
"hash-password": "bun run scripts/digestPassword.ts",
"deploy": "ssh -p 2222 ca3.ie 'sudo systemctl stop overdb' && rsync -ae 'ssh -p 2222' bun.lock node_modules package.json src README.md src tsconfig.json ca3.ie:/usr/local/lib/overdb/ && ssh -p 2222 ca3.ie 'sudo systemctl start overdb'"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "6.4.8",
"@mui/material": "6.4.8",
"@mui/system": "6.4.8",
"@mui/x-data-grid": "^7.28.1",
"@preact/signals": "^1.3.2",
"@tanstack/react-query": "^5.69.0",
"@tanstack/react-query-devtools": "^5.69.0",
"@trpc/client": "^11.0.0",
"@trpc/server": "^11.0.0",
"@trpc/tanstack-react-query": "^11.0.0",
"cookie": "^1.0.2",
"cookie-signature": "^1.2.2",
"country-list": "^2.3.0",
"js-cookie": "^3.0.5",
"jsdom": "^24.1.3",
"moviedb-promise": "^4.0.7",
"notistack": "alpha",
"preact": "^10.26.4",
"query-string": "^9.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bun": "^1.2.5",
"@types/cookie-signature": "^1.1.2",
"@types/jsdom": "^21.1.7",
"@types/react-dom": "^19.0.4",
"typescript": "^5.8.2"
},
"keywords": [
"movies",
"director",
"actor",
"application"
],
"bugs": {
"url": "https://github.com/daradermody/OverDB/issues"
},
"private": true,
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}