-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "goat-monorepo",
"version": "2.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/js/*"
],
"scripts": {
"clean": "turbo run clean && rimraf node_modules lint lint-results",
"build": "turbo run build",
"post-install": "turbo run post-install",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"generate": "turbo run generate",
"prepare": "husky install ./.husky",
"web": "dotenv -- turbo run dev --filter=@p4b/web",
"storybook": "turbo run dev --filter=@p4b/storybook",
"build-storybook": "turbo run build --filter=@p4b/storybook",
"docs": "turbo run dev --filter=@p4b/docs",
"build-docs": "turbo run build --filter=@p4b/docs",
"processes": "turbo run dev --filter=@goat/processes",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:report": "turbo run lint:report",
"typecheck": "turbo run typecheck",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@deploysentinel/playwright": "^0.3.4",
"@playwright/test": "^1.33.0",
"commitizen": "^4.3.0",
"dotenv": "^16.3.1",
"dotenv-cli": "7.2.1",
"husky": "^8.0.3",
"install": "^0.13.0",
"rimraf": "^5.0.1",
"prettier": "^3.3.3",
"syncpack": "^9.8.6",
"tsx": "^3.12.7",
"turbo": "^2.10.7",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@types/memoizee": "^0.4.8"
},
"pnpm": {
"overrides": {
"axios@<1": "^1.18.1",
"dompurify@<3": "^3.4.12",
"undici@6": "^6.27.0",
"minimatch@3": "^3.1.4",
"minimatch@5": "^5.1.8",
"minimatch@6": "^6.2.2",
"minimatch@9": "^9.0.7",
"brace-expansion@1": "^1.1.16",
"brace-expansion@2": "^2.1.2",
"js-yaml@3": "^3.14.2",
"js-yaml@4": "^4.3.0",
"ws@6": "^6.2.4",
"ws@7": "^7.5.11",
"ws@8": "^8.21.0",
"postcss@8": "^8.5.18",
"http-proxy-middleware@2": "^2.0.10",
"form-data@3": "^3.0.5",
"form-data@4": "^4.0.6",
"fast-uri@3": "^3.1.4",
"rollup@2": "^2.79.2",
"rollup@4": "^4.59.0",
"qs@6": "^6.15.2",
"path-to-regexp@0": "^0.1.13",
"lodash": "^4.17.23",
"elliptic": "^6.6.1",
"yaml@1": "^1.10.3",
"yaml@2": "^2.8.3",
"websocket-driver": "^0.7.5",
"tmp@<0.2.4": "^0.2.6",
"svgo@2": "^2.8.3",
"node-forge": "^1.4.0",
"tar-fs@2": "^2.1.4",
"tar-fs@3": "^3.1.1",
"handlebars": "^4.7.9",
"vite@7": "^7.3.5",
"pbkdf2": "^3.1.3",
"sha.js": "^2.4.12",
"cipher-base": "^1.0.5",
"shell-quote": "^1.8.4",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/node": "^20.19.0",
"wait-on@<8": "^8.0.5",
"@docusaurus/core>webpack": "~5.94.0",
"webpack": "5.109.1"
}
}
}