-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 878 Bytes
/
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
{
"name": "hugios",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"graph": "turbo run build --graph=my-graph.html --filter=web",
"release": "turbo run release",
"clean": "npx rimraf */**/node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"hugios": "hugios"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@hugios/tools": "workspace:*",
"prettier": "latest",
"rimraf": "5.0.0",
"turbo": "latest"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14"
},
"packageManager": "pnpm@8.6.1",
"volta": {
"node": "18.16.0"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
}
}