-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.98 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "linjen",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./server/index.js --outdir=build",
"db:seed": "ts-node --require tsconfig-paths/register prisma/seed.ts",
"db:reset": "ts-node --require tsconfig-paths/register prisma/reset.ts",
"dev": "run-p dev:*",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"prisma:generate": "DISABLE_ERD=true npx prisma generate",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node ./build/server/index.js",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server/index.js",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@headlessui/react": "1.6.6",
"@heroicons/react": "1.0.6",
"@mantine/carousel": "^5.4.0",
"@mantine/core": "^5.4.0",
"@mantine/dates": "^5.4.0",
"@mantine/form": "^5.4.0",
"@mantine/hooks": "^5.4.0",
"@mantine/modals": "^5.4.0",
"@mantine/notifications": "^5.4.0",
"@mantine/remix": "^5.4.0",
"@prisma/client": "3.15.2",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@remix-run/node": "1.7.1",
"@remix-run/react": "1.7.1",
"@remix-run/serve": "1.7.1",
"@remix-run/server-runtime": "1.7.1",
"@remix-run/vercel": "1.7.1",
"@tabler/icons": "^1.82.0",
"@vercel/node": "1.15.4",
"bcryptjs": "2.4.3",
"classnames": "^2.3.1",
"compression": "1.7.4",
"cross-env": "7.0.3",
"dayjs": "^1.11.4",
"embla-carousel-react": "^7.0.3",
"express": "4.18.1",
"logrocket": "^3.0.1",
"logrocket-react": "^5.0.1",
"mantine-datatable": "^1.6.4",
"morgan": "1.10.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remix-params-helper": "^0.4.10",
"remix-validated-form": "^4.5.1",
"tiny-invariant": "1.2.0",
"zod": "^3.17.9"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@mermaid-js/mermaid-cli": "^9.1.3",
"@remix-run/dev": "1.7.1",
"@remix-run/eslint-config": "1.7.1",
"@testing-library/cypress": "8.0.3",
"@testing-library/dom": "8.18.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.2.6",
"@types/bcryptjs": "2.4.2",
"@types/compression": "1.7.2",
"@types/eslint": "8.4.5",
"@types/express": "4.17.13",
"@types/logrocket-react": "^3.0.0",
"@types/morgan": "1.9.3",
"@types/node": "18.0.4",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "1.3.2",
"binode": "1.0.5",
"c8": "7.11.3",
"cross-env": "7.0.3",
"cypress": "10.3.0",
"daisyui": "^2.19.0",
"dotenv": "16.0.1",
"esbuild": "0.14.49",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"happy-dom": "6.0.3",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"msw": "0.44.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prisma": "3.15.2",
"prisma-erd-generator": "1.0.1",
"start-server-and-test": "1.14.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.0.0",
"typescript": "4.7.4",
"vite": "3.0.0",
"vite-tsconfig-paths": "3.5.0",
"vitest": "0.19.1"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}