-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "kyrian",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm with-env turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"dev": "turbo dev --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"with-env": "dotenv -e .env --"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@kyrian/eslint-config": "0.1.0",
"@manypkg/cli": "^0.21.0",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
}
}