-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "my-task",
"packageManager": "yarn@3.5.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"drizzle-orm": "^0.27.2",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"ts-node": "^10.0.0",
"typescript": "^5.0.4"
},
"scripts": {
"frontend": "yarn workspace @my-task/frontend",
"backend": "yarn workspace @my-task/backend",
"common": "yarn workspace @my-task/common",
"database": "yarn workspace @my-task/database",
"redis": "yarn workspace @my-task/cache",
"stop": "docker-compose down --rmi all && docker image prune -f",
"start": "yarn stop && docker-compose up -d",
"test": "act --secret-file=.env --env-file=.env",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
}
}