-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "snapshot-manager",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc",
"db-view": "drizzle-kit studio"
},
"dependencies": {
"@contentful/app-sdk": "^4.29.1",
"@contentful/f36-components": "^4.80.3",
"@contentful/f36-icons": "^4.29.0",
"@contentful/f36-multiselect": "^4.24.0",
"@contentful/f36-progress-stepper": "^4.0.0-alpha.0",
"@contentful/rich-text-react-renderer": "^15.22.10",
"@remix-run/serve": "^2.16.7",
"@tanstack/react-query": "^5.77.2",
"contentful-management": "^11.31.8",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"generate-json-patch": "^1.2.4",
"isbot": "^4.1.0",
"pg": "^8.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^7.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@remix-run/dev": "^2.16.7",
"@remix-run/node": "^2.16.7",
"@remix-run/react": "^2.16.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/pg": "^8.11.11",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitest/coverage-v8": "^3.0.9",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.24.2",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.38",
"react-router-dom": "^7.3.0",
"remix-development-tools": "^4.4.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=20.0.0"
}
}