-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 2.37 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
{
"name": "root",
"version": "1.0.0",
"scripts": {
"db:migrate": "pnpm back db:migrate",
"db:create": "pnpm back db:create",
"db:down": "pnpm back db:down",
"db:up": "pnpm back db:up",
"db:redo": "pnpm back db:redo",
"db:seed": "pnpm back db:seed",
"prepare": "if [[ -z $CI ]]; then husky install && chmod a+x .husky/pre-commit && chmod a+x .husky/pre-push; fi;",
"generate-front-envfile": "grep 'VITE_' .env > ./front/.env",
"prettier": "pnpm prettier:glob --write ./**/src/",
"prettier:check": "pnpm prettier:glob --check ./**/src/",
"prettier:glob": "prettier",
"check:glob": "biome check --diagnostic-level=error",
"check:fix": "biome check --apply --diagnostic-level=error .",
"check:fix-unsafe": "biome check --apply-unsafe --diagnostic-level=error .",
"back": "pnpm --dir back",
"front": "pnpm --dir front",
"shared": "pnpm --dir shared",
"playwright": "pnpm --dir playwright",
"playwright:test": "pnpm back db:seed && pnpm playwright test:local",
"react-design-system": "pnpm --dir libs/react-design-system",
"html-templates": "pnpm --dir libs/html-templates",
"lintconfig:glob": "eslint --config=.eslintrc.js",
"lint-staged": "lint-staged --config=./.tooling/.lintstaged/.lintstagedrc",
"includecheck": "turbo run includecheck",
"check": "turbo run check",
"format:check": "turbo run format:check",
"fullcheck": "turbo run verify-migrations-order includecheck check typecheck test --concurrency=50%",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"dev": "turbo run dev",
"fast-checks": "turbo run includecheck check verify-migrations-order && pnpm front test && pnpm shared test"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-class-members": "^1.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.0",
"turbo": "1.4.6",
"typescript": "^5.6.2"
},
"engines": {
"node": "^20.15.0"
},
"packageManager": "[email protected]"
}