-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
{
"private": true,
"workspaces": [
"apps/*",
"libs/*",
"scripts"
],
"license": "MIT",
"engines": {
"node": "^22.11.0",
"yarn": "^1.22.0"
},
"type": "module",
"scripts": {
"db:migrate": "yarn prisma-env migrate dev",
"db:reset": "yarn prisma-env migrate reset -f",
"db:studio": "yarn prisma-env studio",
"down": "run-s down:ecosystem down:docker",
"down:docker": "docker-compose down",
"down:ecosystem": "pm2 delete ./ecosystem.config.cjs && rm -rf ./logs",
"generate": "run-s generate:prisma generate:workspaces",
"generate:prisma": "prisma generate",
"generate:workspaces": "yarn workspaces run generate",
"lint": "run-p --aggregate-output --continue-on-error lint:*",
"lint:format": "prettier --list-different .",
"lint:js": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:ts": "yarn workspaces run tsc --noEmit",
"lint-fix": "run-s lint-fix:js lint-fix:format",
"lint-fix:format": "prettier --write .",
"lint-fix:js": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix .",
"ls": "yarn pm2 ls",
"log": "yarn pm2 log",
"prisma-env": "node -r dotenv-flow/config ./node_modules/.bin/prisma",
"restart:ecosystem": "run-s down:ecosystem up:ecosystem",
"up": "run-s up:docker up:ecosystem",
"up:docker": "docker-compose up -d",
"up:ecosystem": "pm2 start ./ecosystem.config.cjs"
},
"prisma": {
"seed": "yarn seed-data"
},
"dependencies": {
"prisma": "^5.8.1"
},
"devDependencies": {
"@remix-run/eslint-config": "~2.9.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"pm2": "^5.3.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.1",
"typescript": "~5.4.5"
}
}