-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.41 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
{
"name": "weatherio",
"private": true,
"engines": {
"node": ">=20.11.1"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"preinstall": "npx only-allow pnpm",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"update:city-data-prod": "cd packages/city-data && pnpm update:city-data-prod",
"update:city-data-dev": "cd packages/city-data && pnpm update:city-data-dev",
"convex:deploy": "cd packages/city-data && pnpm convex:deploy",
"e2e:test": "turbo e2e:test"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@total-typescript/ts-reset": "^0.5.1",
"@turbo/gen": "^1.12.5",
"@weatherio/prettier-config": "workspace:^0.1.0",
"prettier": "^3.2.5",
"turbo": "^2.0.3",
"typescript": "^5.4.2"
},
"prettier": "@weatherio/prettier-config"
}