-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "pie-wc",
"private": true,
"scripts": {
"postinstall": "workspaces-to-typescript-project-references --includesRoot",
"build": "tsc --build",
"watch": "tsc --build --watch",
"clean": "rm -rf {apps,elements,packages,dev}/**/dist && rm -rf ./node_modules {apps,elements,packages,dev}/**/node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint . --ext .ts --cache --fix",
"release": "turbo run build --filter=docs^... && changeset publish",
"test": "pnpm jest --runInBand --forceExit"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"eslint": "8.36.0",
"eslint-config-custom": "workspace:*",
"prettier": "latest",
"turbo": "latest",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.10.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"@types/node": "^20.8.9"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"elements/*",
"apps/*"
],
"engines": {
"node": ">=18"
}
}