forked from ThibautMarechal/turborepo-remote-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.52 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@thimar/turborepo-remote-cache",
"version": "1.13.1",
"description": "Self hosted Turborepo remote cache",
"keywords": [
"turborepo",
"remote-cache",
"monorepo",
"remix"
],
"license": "MIT",
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"docker": "docker-compose -f docker-compose.db.yml up -d",
"lint": "eslint ./app --color --max-warnings=0",
"setup": "prisma migrate dev && prisma db seed",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:8080 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress && tsc -b prisma",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"prestart": "prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production node server/index.mjs"
},
"dependencies": {
"@heroicons/react": "2.0.18",
"@prisma/client": "^5.8.1",
"@remix-run/node": "2.10.3",
"@remix-run/react": "2.10.3",
"@remix-run/serve": "2.10.3",
"@tanstack/react-table": "8.10.7",
"abstract-blob-store": "3.3.5",
"aws-sdk": "2.1551.0",
"azure-blob-storage": "4.2.5",
"azure-blob-store": "1.0.7",
"classnames": "2.3.2",
"copy-to-clipboard": "3.3.3",
"cross-env": "7.0.3",
"debug": "4.3.4",
"domain-functions": "2.5.1",
"fs-blob-store": "6.0.0",
"isbot": "3.7.1",
"koa": "^2.15.3",
"koa-static": "^5.0.0",
"npm-run-all": "4.1.5",
"prisma": "^5.8.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-charts": "3.0.0-beta.57",
"react-dom": "18.2.0",
"react-gravatar": "2.6.3",
"react-hook-form": "7.48.2",
"react-intersection-observer": "9.5.3",
"react-router-dom": "6.20.0",
"remix-auth": "3.6.0",
"remix-auth-form": "1.4.0",
"remix-auth-microsoft": "^2.0.1",
"remix-auth-oidc": "1.0.0",
"remix-forms": "2.2.1",
"remix-koa-adapter": "^2.0.0",
"remix-utils": "^7.3.0",
"s3-blob-store": "4.1.1",
"superjson": "2.2.1",
"tiny-invariant": "1.3.1",
"tsconfig-paths": "4.2.0",
"tsx": "^4.7.0",
"typescript": "5.3.3",
"uuid": "9.0.1",
"zod": "3.22.4"
},
"devDependencies": {
"@remix-run/dev": "2.3.1",
"@remix-run/eslint-config": "2.3.1",
"@tailwindcss/typography": "0.5.10",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@thimar/eslint-config": "2.0.1",
"@types/node": "20.10.6",
"@types/qs": "6.9.11",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/react-gravatar": "2.6.14",
"@types/readable-stream": "2.3.15",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.1",
"cypress": "13.6.4",
"daisyui": "4.5.0",
"eslint": "8.56.0",
"happy-dom": "12.10.3",
"start-server-and-test": "2.0.3",
"tailwind": "4.0.0",
"tailwindcss": "3.3.5",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.1"
},
"resolutions": {
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"cli-truncate": "2.1.0"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts"
}
}