-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 4.01 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
{
"name": "pokemon-ai-gen-5a11",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"db:prepare-migration": "npm run shadow-db:start && prisma migrate dev --create-only --skip-seed && npm run shadow-db:stop",
"db:deploy-migration": "prisma migrate deploy",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"shadow-db:start": "docker-compose up -d && dotenv -- node ./wait-shadow-db-setup.js",
"shadow-db:stop": "docker-compose stop",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "run-s setup:db setup:seed",
"setup:db": "prisma generate && prisma migrate deploy",
"setup:seed": "prisma db seed",
"start": "remix-serve build",
"start:ci": "dotenv -- remix-serve build",
"test": "vitest",
"test:cov": "vitest --coverage",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 'npx cypress open'",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "dotenv -- cross-env PORT=8811 start-server-and-test http://localhost:8811 'npx cypress run'",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {
"singleAttributePerLine": true
},
"dependencies": {
"@heroicons/react": "^2.0.11",
"@prisma/client": "^4.2.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@supabase/supabase-js": "^1.35.6",
"cookie": "^0.5.0",
"cuid": "^2.1.8",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-fs-backend": "^1.1.5",
"i18next-http-backend": "^1.4.1",
"isbot": "^3.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.5",
"remix-i18next": "^4.1.1",
"remix-params-helper": "^0.4.10",
"tiny-invariant": "^1.2.0",
"uuid": "^9.0.0",
"zod": "^3.17.9"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/eslint": "^8.4.5",
"@types/i18next-fs-backend": "^1.1.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-react": "^2.0.0",
"binode": "^1.0.5",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"cypress": "^10.4.0",
"dotenv-cli": "^6.0.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"happy-dom": "^6.0.4",
"msw": "0.44.2",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.2.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.21.1"
},
"engines": {
"node": ">=14"
},
"prisma": {
"schema": "app/database/schema.prisma",
"seed": "ts-node --require tsconfig-paths/register app/database/seed.server.ts"
}
}