-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
{
"name": "examples__sep__typed-sql",
"private": true,
"sideEffects": false,
"type": "module",
"imports": {
"#*": "./*"
},
"scripts": {
"build": "run-s build:*",
"build:icons": "rmx svg-sprite other/svg-icons app/components/ui/icon.tsx --template=./other/svg-icon-template.txt",
"build:remix": "remix build --sourcemap",
"build:server": "tsx ./other/build-server.ts",
"dev": "remix dev --manual -c \"node ./server/dev-server.js\"",
"test": "playwright test",
"start": "cross-env NODE_ENV=production node .",
"lint": "eslint .",
"typecheck": "tsc"
},
"dependencies": {
"@epic-web/workshop-utils": "^5.12.2",
"@conform-to/react": "^0.9.0",
"@conform-to/zod": "^0.9.0",
"@mswjs/data": "^0.16.1",
"@prisma/client": "^5.19.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@remix-run/css-bundle": "2.11.2",
"@remix-run/express": "2.11.2",
"@remix-run/node": "2.11.2",
"@remix-run/react": "2.11.2",
"@remix-run/serve": "2.11.2",
"address": "^2.0.3",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"close-with-grace": "^2.1.0",
"clsx": "^2.1.1",
"compression": "^1.7.4",
"crypto-js": "^4.2.0",
"@paralleldrive/cuid2": "^2.2.2",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"get-port": "^7.1.0",
"glob": "^11.0.0",
"isbot": "^5.1.17",
"morgan": "^1.10.0",
"prisma": "^5.19.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-utils": "^7.6.0",
"spin-delay": "^2.0.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.46.1",
"@remix-run/dev": "2.11.2",
"@remix-run/eslint-config": "2.11.2",
"@total-typescript/ts-reset": "^0.6.0",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/morgan": "^1.9.9",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"enforce-unique": "^1.3.0",
"esbuild": "0.23.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"remix-flat-routes": "^0.6.5",
"rmx-cli": "^0.4.16",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
]
}