-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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": "@journey-link/monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:api": "turbo run dev --filter=@journey-link/api",
"dev:web": "turbo run dev --filter=@journey-link/web",
"build:api": "turbo run build --filter=@journey-link/api",
"build:web": "turbo run build --filter=@journey-link/web",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"clean": "turbo run clean && rm -rf node_modules",
"postinstall": "husky"
},
"devDependencies": {
"@types/node": "^22.10.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"turbo": "^2.8.13",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.10.3",
"lint-staged": {
"**/*.{js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,scss,md}": "prettier --write"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}