-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"private": true,
"license": "UNLICENSED",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"api": "yarn workspace @paperpod/api",
"web": "yarn workspace @paperpod/web",
"authentication": "yarn workspace @paperpod/authentication",
"gateway": "yarn workspace @paperpod/gateway",
"converter": "yarn workspace @paperpod/converter",
"common": "yarn workspace @paperpod/common",
"server": "yarn workspace @paperpod/server",
"extension": "yarn workspace @paperpod/extension",
"ui": "yarn workspace @paperpod/ui",
"frontend": "yarn workspace @paperpod/frontend",
"infrastructure": "yarn workspace @paperpod/infrastructure",
"docs": "yarn workspace @paperpod/docs"
},
"engines": {
"node": "19"
},
"resolutions": {
"**/react": "^18.0.9",
"**/react-dom": "^18.0.9"
},
"dependencies": {
"react": "^18.0.9",
"react-dom": "^18.0.9"
},
"devDependencies": {
"husky": "^5.2.0",
"metro-config": "^0.66.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^18.0.9",
"react-dom": "^18.0.9"
}
}