-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.19 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
{
"version": "0.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"check-dependencies": "npx npm-check-updates --peer --format group -i",
"prisma-map": "npx prisma-case-format --file ./prisma/schema.prisma --map-table-case=snake,plural --map-field-case=snake -p",
"up": "pm2 start ecosystem.config.cjs",
"down": "pm2 delete ecosystem.config.cjs",
"log": "pm2 log",
"restart": "pm2 delete ecosystem.config.cjs && pm2 start ecosystem.config.cjs",
"create-migration": "npx prisma migrate dev --create-only",
"reset-database": "prisma migrate reset -f --skip-generate",
"build": "npx tsc -p tsconfig.build.json && remix vite:build",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"test": "jest"
},
"dependencies": {
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"@prisma/client": "^5.20.0",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"date-fns": "^4.1.0",
"isbot": "^5.1.17",
"koa": "^2.15.3",
"koa-connect": "^2.1.0",
"koa-static": "^5.0.0",
"koa-trust-proxy": "^0.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.8.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@remix-run/dev": "^2.13.1",
"@remix-run/eslint-config": "^2.13.1",
"@swc/core": "^1.7.35",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/koa": "^2.15.0",
"@types/koa-static": "^4.0.4",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"pm2": "^5.4.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.20.0",
"prisma-case-format": "^2.2.1",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts"
}
}