-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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": "vesti-monorepo",
"private": true,
"scripts": {
"pw:auth": "node ./scripts/playwright/bootstrap-auth.mjs",
"pw:state": "node ./scripts/playwright/export-storage-state.mjs",
"pw:sample": "node ./scripts/playwright/dom-sample.mjs"
},
"workspaces": [
"frontend",
"vesti-web",
"packages/*"
],
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^7.1.2",
"remark-gfm": "^2.0.0"
},
"devDependencies": {
"@vesti/content-package": "file:./packages/vesti-content-package",
"@playwright/test": "^1.55.0",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18"
},
"pnpm": {
"overrides": {
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"lucide-react": "0.564.0",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}
}