forked from casesandberg/play-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"private": true,
"scripts": {
"build": "dotenv -- turbo build",
"dev": "dotenv -- turbo dev",
"lint": "dotenv -- turbo lint",
"format": "dotenv -- turbo format",
"type-check": "dotenv -- turbo type-check",
"clean": "dotenv -- turbo clean",
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:push": "dotenv -- turbo db:push",
"db:generate": "dotenv -- turbo db:generate",
"db:script": "dotenv -- npm run script -w @play-money/database",
"db:reset": "dotenv -- turbo db:reset",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@play-money/config": "*",
"@types/jest": "^29.5.12",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"prisma": {
"schema": "packages/database/schema.prisma",
"seed": "tsx packages/database/seed.ts"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}