-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "remix-tutorial-awilix-mikroorm",
"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": "NODE_ENV=production node ./build/server/index.js",
"typecheck": "tsc",
"mikro-orm": "tsx ./node_modules/@mikro-orm/cli/esm"
},
"dependencies": {
"@mikro-orm/better-sqlite": "^6.3.1",
"@mikro-orm/cli": "^6.3.1",
"@mikro-orm/core": "^6.3.1",
"@mikro-orm/migrations": "^6.3.1",
"@mikro-orm/reflection": "^6.3.1",
"@mikro-orm/seeder": "^6.3.1",
"@remix-run/node": "^2.10.3",
"@remix-run/react": "^2.10.3",
"@remix-run/serve": "^2.10.3",
"awilix": "^10.0.2",
"compression": "^1.7.4",
"isbot": "^4.4.0",
"match-sorter": "^6.3.4",
"pluralize": "^8.0.0",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"remix-create-express-app": "^0.4.4",
"sort-by": "^1.2.0",
"tiny-invariant": "^1.3.3",
"uuid": "^10.0.0",
"vite-env-only": "^3.0.3",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@remix-run/dev": "^2.10.3",
"@types/compression": "^1.7.5",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"remix-express-dev-server": "^0.4.4",
"tsx": "^4.16.2",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=20.0.0"
},
"mikro-orm": {
"alwaysAllowTs": true,
"tsConfigPath": "tsconfig.json"
}
}