-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.7 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "remix-accelerate-starter",
"private": false,
"description": "A Remix Example App with Prisma Accelerate",
"license": "MIT",
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "npm run ts-run tasks/validateConfig.ts && prisma generate && prisma db push && npm run build",
"dev": "remix vite:dev",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache",
"prepare": "[ \"$NODE_ENV\" != \"production\" ] && husky || :",
"start": "remix-serve ./build/server/index.js",
"test:vitest": "vitest --run",
"test:vitest:watch": "vitest",
"ts-check": "tsc --project tsconfig.json --noEmit --skipLibCheck",
"ts-run": "dotenv ts-node",
"validate-env": "npm run ts-run tasks/validateConfig.ts"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix"
},
"dependencies": {
"@prisma/client": "7.0.0",
"@prisma/extension-accelerate": "^2.0.2",
"@remix-run/node": "2.16.8",
"@remix-run/react": "2.16.8",
"@remix-run/serve": "2.16.8",
"accept-language-parser": "1.5.0",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"isbot": "5.1.31",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"postcss": "8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hot-toast": "2.5.2",
"remix": "2.16.8",
"tailwind-merge": "3.3.1",
"tailwindcss-animate": "1.0.7",
"zod": "3.25.76",
"zod-error": "1.5.0",
"zod-form-data": "2.0.7"
},
"devDependencies": {
"@faker-js/faker": "9.9.0",
"@remix-run/dev": "2.16.8",
"@remix-run/eslint-config": "2.16.8",
"@remix-run/testing": "2.16.8",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@types/accept-language-parser": "1.5.8",
"@types/lodash": "4.17.20",
"@types/node": "22.19.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.41.0",
"@vitest/ui": "3.2.4",
"autoprefixer": "10.4.21",
"dotenv": "16.6.1",
"dotenv-cli": "8.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-lodash": "8.0.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-testing-library": "7.6.8",
"jsdom": "26.1.0",
"lint-staged": "16.2.6",
"prettier": "3.6.2",
"prisma": "7.0.0",
"tailwindcss": "4.2.1",
"ts-node": "10.9.2",
"tsx": "4.20.6",
"typescript": "5.8.2",
"vite": "6.3.6",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"engines": {
"node": "22.21.1"
}
}