-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.94 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
{
"name": "net-doc",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "npm-run-all -p dev:*",
"dev:remix": "remix vite:dev --manual",
"dev:worker": "env-cmd -f .env node ./worker/worker.mjs",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start:remix": "remix-serve ./build/server/index.js",
"start:worker": "node ./worker/worker.mjs",
"typecheck": "tsc",
"docker": "prisma migrate deploy && prisma generate --sql && prisma db seed && npm-run-all -p start:*",
"prettier": "prettier app --check --end-of-line auto",
"test": "env-cmd -f .test.env vitest",
"test:coverage": "env-cmd -f .test.env vitest run --coverage",
"test:ci": "vitest run --coverage",
"test:db:create": "env-cmd -f .test.env npx prisma migrate dev"
},
"dependencies": {
"@arcath/utils": "^3.15.0",
"@epic-web/totp": "^2.0.0",
"@prisma/client": "^5.21.1",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@tanstack/react-query": "^5.59.16",
"adm-zip": "^0.5.16",
"bcrypt": "^5.1.1",
"bullmq": "^5.21.2",
"cancant": "^1.1.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.10",
"is-ip": "^5.0.1",
"isbot": "^5.1.17",
"mdx-bundler": "^10.0.3",
"mkdirp": "^3.0.1",
"node-cron": "^3.0.3",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"papaparse": "^5.4.1",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^4.5.1",
"react-use": "^17.5.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"uuid": "^11.0.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@faker-js/faker": "^9.1.0",
"@remix-run/dev": "^2.13.1",
"@types/bcrypt": "^5.0.2",
"@types/nprogress": "^0.2.3",
"@types/papaparse": "^5.3.15",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"autoprefixer": "^10.4.20",
"env-cmd": "^10.1.0",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-x": "^4.4.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}