-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.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
{
"name": "linkdrop-d071",
"version": "1.8.1",
"private": true,
"type": "module",
"description": "",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "remix vite:build",
"dev": "tsx ./server.ts",
"docker": "docker compose up -d",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production tsx ./server.ts",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc && tsc -p cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/postgres-data"
],
"dependencies": {
"@prisma/client": "^5.19.1",
"@remix-run/express": "^2.12.1",
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/server-runtime": "^2.12.1",
"@remix-run/v1-route-convention": "^0.1.4",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fast-deep-equal": "^3.1.3",
"lucide-react": "^0.445.0",
"morgan": "^1.10.0",
"otplib": "^12.0.1",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tiny-invariant": "^1.3.3",
"tsx": "^4.19.1"
},
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"@remix-run/dev": "^2.12.1",
"@remix-run/eslint-config": "^2.12.1",
"@testing-library/cypress": "^10.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/crypto-js": "^4.2.2",
"@types/eslint": "^8.56.12",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.5",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"autoprefixer": "^10.4.20",
"cypress": "^13.14.2",
"esbuild": "^0.23.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"happy-dom": "^15.7.4",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.19.1",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.12",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=18"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}