-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "no-charge",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@7.29.1",
"scripts": {
"prepare": "husky install",
"build": "pnpm with-env turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "pnpm with-env turbo db:generate",
"db:push": "pnpm with-env turbo db:push db:generate",
"dev": "pnpm with-env 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": "^3.7.1",
"@manypkg/cli": "^0.20.0",
"@types/prettier": "^2.7.2",
"dotenv-cli": "^7.0.0",
"eslint": "^8.34.0",
"eslint-config-base": "0.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"shell-quote": "^1.8.0",
"turbo": "^1.8.3",
"typescript": "^4.9.5"
}
}