-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "theopenpresenter",
"projectName": "TheOpenPresenter",
"private": true,
"scripts": {
"setup": "yarn && yarn setup:env auto && yarn setup:db",
"setup:env": "node ./scripts/setup_env.js",
"setup:db": "node ./scripts/setup_db.js",
"lint": "turbo lint",
"test": "node scripts/test.js",
"test:watch": "node scripts/test.js --watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev": "yarn && turbo dev --concurrency 20",
"build": "turbo build",
"clean": "node ./scripts/clean.js",
"reset": "yarn clean && node ./scripts/delete-env-file.js",
"postinstall": "yarn patch-package && node ./scripts/panda.js",
"--shortcuts to run commands in workspaces--": "",
"config": "yarn workspace @repo/config",
"db": "yarn workspace @repo/db",
"graphql": "yarn workspace @repo/graphql",
"homepage": "yarn workspace @repo/homepage",
"remote": "yarn workspace @repo/remote",
"renderer": "yarn workspace @repo/renderer",
"shared": "yarn workspace @repo/shared",
"server": "yarn workspace @repo/server",
"worker": "yarn workspace @repo/worker"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"concurrently": "^9.1.0",
"nodemon": "^3.1.7",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"backend/*",
"packages/*",
"plugins/*"
],
"dependencies": {
"graphql": "^15.9.0"
},
"resolutions": {
"graphql": "15.9",
"pg-connection-string": "2.x",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"overrides": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
}
}