-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.5 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
{
"name": "corehalla",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/djobbo/corehalla.git",
"author": "Djobbo Maïga <[email protected]>",
"scripts": {
"build": "turbo run build",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write \"**/*.{ts,tsx,md}\" && turbo run format",
"ts:check": "turbo run ts:check",
"ci:install": "pnpm install --frozen-lockfile",
"ci:lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"ci:deadcode": "turbo run ci:deadcode",
"dl-roster": "turbo run dl-roster",
"db:migrate": "turbo run db:migrate",
"db:migrate:prod": "turbo run db:migrate:prod --scope=db --include-dependencies --no-deps",
"build:prod": "pnpm db:migrate:prod && turbo run build --scope=app --include-dependencies --no-deps",
"dev": "turbo run dev --parallel",
"setup:env": "zx setup.zx.mjs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"prettier": "^3.2.4",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"zx": "^7.2.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}