-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.33 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": "PUMPED-v2",
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-graphql": "genql --endpoint http://localhost:8080/graphql --output ./generated",
"schema:push": "bun run ./scripts/schema.ts push http://localhost:8080 ./schema.graphql",
"schema:validate": "bun run ./scripts/schema.ts validate http://localhost:8080 ./schema.graphql",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit -w",
"database:start": "docker-compose -f ./docker-compose.dev.yml up -d",
"database:stop": "docker-compose -f ./docker-compose.dev.yml stop",
"database:delete": "docker-compose -f ./docker-compose.dev.yml rm",
"database:prod:start": "docker-compose -f ./docker-compose.prod.yml up -d",
"database:prod:stop": "docker-compose -f ./docker-compose.prod.yml stop",
"database:prod:delete": "docker-compose -f ./docker-compose.prod.yml rm"
},
"dependencies": {
"@bluesky-digital-labs/next-firebase-auth": "^0.8.0",
"@genql/runtime": "^2.10.0",
"@google-cloud/secret-manager": "^4.0.0",
"@next/font": "^13.0.0",
"@nwylynko/how-long-ago": "^1.0.6",
"@react-icons/all-files": "^4.1.0",
"@tanstack/react-query": "^4.12.0",
"@tanstack/react-query-devtools": "^4.12.0",
"@trpc/client": "v10.0.0-rc.1",
"@trpc/next": "v10.0.0-rc.1",
"@trpc/react-query": "v10.0.0-rc.1",
"@trpc/server": "v10.0.0-rc.1",
"axios": "^0.27.2",
"client-only": "^0.0.1",
"cookie": "^0.5.0",
"firebase-admin": "^11.0.0",
"get-image-colors": "^4.0.1",
"next": "13.0.1-canary.2",
"next-seo": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.0",
"react-is": "^18.2.0",
"react-select": "^5.4.0",
"server-only": "^0.0.1",
"sharp": "^0.30.7",
"styled-components": "^5.3.6",
"superjson": "^1.10.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@genql/cli": "^2.10.0",
"@next/env": "^12.2.2",
"@types/cookie": "^0.5.1",
"@types/get-image-colors": "^4.0.1",
"@types/node": "^18.0.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/styled-components": "^5.1.25",
"bun-types": "^0.2.1",
"eslint": "8.26.0",
"eslint-config-next": "^13.0.0",
"typescript": "^4.7.4"
}
}