-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "cinecal",
"version": "0.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "npx tsc -p tsconfig.build.json && remix vite:build",
"check-dependencies": "npx npm-check-updates --peer --format group -i",
"create-migration": "npx prisma migrate dev --create-only",
"down": "pm2 delete ecosystem.config.cjs && docker-compose down",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"log": "pm2 log",
"prisma-map": "npx prisma-case-format --file ./prisma/schema.prisma --map-table-case=snake,plural --map-field-case=snake -p",
"reset-database": "prisma migrate reset -f --skip-generate",
"restart": "pm2 delete ecosystem.config.cjs && pm2 start ecosystem.config.cjs",
"test": "jest",
"up": "docker-compose up -d && pm2 start ecosystem.config.cjs"
},
"dependencies": {
"@conform-to/react": "^1.1.4",
"@conform-to/zod": "^1.1.4",
"@prisma/client": "^5.15.0",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@unpic/pixels": "^1.2.2",
"@unpic/placeholder": "^0.1.2",
"date-fns": "^3.6.0",
"isbot": "^5.1.9",
"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.0",
"redis": "^4.6.14",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@swc/core": "^1.5.29",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/koa-static": "^4.0.4",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"msw": "^2.3.1",
"pm2": "^5.4.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.15.0",
"prisma-case-format": "^2.2.1",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.4",
"typescript": "^5.4.5",
"vite": "^5.2.13"
},
"engines": {
"node": ">=20.6.0"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts"
}
}