This repository was archived by the owner on Aug 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"name": "bvs",
"description": "Better Volunteer Scheduler",
"keywords": [
"modern",
"volunteer management",
"webapp"
],
"homepage": "https://github.com/pwbriggs/bvs#readme",
"bugs": {
"url": "https://github.com/pwbriggs/bvs/issues"
},
"license": "MIT",
"author": "Peter Briggs",
"repository": "github:pwbriggs/bvs",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"postinstall": "prisma generate",
"dev": "concurrently \"npm:remixDev\" \"npm:devDb\"",
"devDb": "postgres -D .dev_db",
"remixDev": "remix dev --manual -c \"node --watch-path server.js --watch server.js\"",
"start": "cross-env NODE_ENV=production node ./server.js",
"typecheck": "tsc",
"test": "playwright test",
"playwright": "playwright"
},
"dependencies": {
"@prisma/client": "^5.18.0",
"@remix-run/express": "^2.11.2",
"@remix-run/node": "^2.11.2",
"@remix-run/react": "^2.11.2",
"@vercel/remix": "^2.11.2",
"@vercel/speed-insights": "^1.0.12",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.19.2",
"isbot": "^4",
"morgan": "^1.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@remix-run/dev": "^2.11.2",
"@remix-run/eslint-config": "^2.11.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/source-map-support": "^0.5.6",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"prisma": "^5.18.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
}
}