generated from forge42dev/base-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.61 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
{
"name": "@forge42/base-stack",
"private": true,
"sideEffects": false,
"license": "MIT",
"type": "module",
"scripts": {
"execute": "node --no-warnings --experimental-specifier-resolution=node --loader ./scripts/loader.js",
"script": "npm run execute scripts/setup.ts",
"cleanup": "npm run script scripts/cleanup.ts",
"postinstall": "npm run cleanup",
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"lint:strict": "npm run lint -- --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"start": "remix-serve ./build/server/index.js",
"test": "vitest run",
"test:ui": "vitest --ui --api 9527",
"test:cov": "vitest run --coverage",
"typecheck": "tsc",
"validate": "npm run typecheck && npm run lint && npm run test && npm run knip",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@remix-run/web-fetch": "^4.4.2",
"clsx": "^2.1.0",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.5.0",
"isbot": "^5.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"remix-custom-routes": "^1.0.1",
"remix-i18next": "^6.0.1",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@types/node": "^20.12.4",
"@types/prompt": "^1.1.8",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.19",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.3.12",
"happy-dom": "^14.4.0",
"husky": "^9.0.11",
"knip": "^5.9.0",
"node-html-parser": "^6.1.13",
"postcss": "^8.4.38",
"prompt": "^1.3.0",
"remix-development-tools": "^4.1.4",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vite-plugin-icons-spritesheet": "^1.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=20.0.0"
}
}