-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 962 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 962 Bytes
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
{
"name": "truemedia-workspaces",
"version": "0.0.0",
"devDependencies": {
"dotenv-cli": "^7.4.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"syncpack": "^13.0.0",
"turbo": "^2.2.1"
},
"lint-staged": {
"**/*.{ts,tsx}": [],
"**/package.json": [
"syncpack format --source"
]
},
"packageManager": "npm@10.8.2",
"prettier": {
"semi": false,
"printWidth": 120
},
"scripts": {
"build": "turbo build",
"check-types": "turbo check-types",
"ci": "turbo run lint check-types build test",
"db:integration-test": "dotenv -e .env.test -- npx prisma migrate deploy",
"dev": "turbo dev",
"format": "prettier --write '**/*.{ts,tsx}' && syncpack format",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prepare": "husky install",
"start": "turbo start",
"test": "turbo test"
},
"workspaces": [
"apps/*",
"packages/*"
]
}