-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "turbo-mono",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "bek <[email protected]>",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"clean": "turbo clean",
"db-generate": "turbo db-generate",
"dev": "dotenv -e .env turbo dev",
"format": "turbo format",
"lint": "turbo lint",
"prepare": "husky install",
"sort-packages": "npx sort-package-json \"package.json\" \"apps/*/package.json\" \"packages/*/package.json\"",
"start": "turbo start"
},
"dependencies": {
"@prisma/client": "^4.5.0"
},
"devDependencies": {
"@types/node": "^18.8.5",
"concurrently": "^7.4.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.25.0",
"eslint-config-custom": "*",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.5.0",
"rimraf": "^3.0.2",
"tsconfig": "*",
"turbo": "^1.5.6",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0"
}
}