forked from serudda/reward-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"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",
"@paralleldrive/cuid2": "^2.2.0",
"@types/prettier": "^2.7.2",
"dotenv-cli": "^7.0.0",
"eslint": "^8.34.0",
"eslint-config-acme": "0.0.0",
"prettier": "^2.8.4",
"prettier-plugin-prisma": "^4.10.0",
"prettier-plugin-tailwindcss": "^0.2.4",
"turbo": "^1.8.3",
"typescript": "^4.9.5"
}
}