-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
{
"name": "yas",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"libraries/*",
"integrations/*",
"incubations/*",
"core/*"
],
"scripts": {
"clean": "find . -type d \\( -path \"./*/dist\" -o -path \"./*/.cache\" -o -path \"./*/.turbo\" \\) -not -path \"*/node_modules/*\" -prune -exec rm -r {} +",
"build": "turbo run build",
"dev": "turbo run dev --concurrency 20",
"lint": "pnpm eslint . --max-warnings=0 && pnpm -r lint",
"lint:fix": "pnpm eslint . --fix",
"depcheck": "pnpm exec depcruise . --output-type err-long && assert-dependency-versions --pn react react-dom @types/react @types/react-dom superjson",
"architecture": "pnpm exec depcruise . --output-type archi | dot -Tsvg -o architecture.svg",
"typecheck": "typecheck-all-workspaces",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"eslint": "cross-env NODE_OPTIONS=--max_old_space_size=8000 eslint",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@commitlint/config-conventional": "19.0.3",
"@yas/scripts": "workspace:*",
"cross-env": "7.0.3",
"dependency-cruiser": "16.2.2",
"eslint": "^8.57.0",
"eslint-config-yas": "workspace:*",
"eslint-plugin-yas": "workspace:*",
"husky": "9.0.11",
"prettier": "3.3.1",
"turbo": "2.0.4-canary.0"
},
"engines": {
"node": "20.10.0"
},
"packageManager": "[email protected]+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390"
}