-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.02 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
{
"name": "seed",
"private": true,
"scripts": {
"test": "yarn workspace @shm/shared test",
"validate": "yarn format",
"validate:fix": "yarn format:fix",
"web": "yarn workspace @shm/web dev",
"web:prod": "yarn build && node frontend/apps/web/crazy-hack-web-build.mjs",
"web:start": "yarn workspace @shm/web start",
"web:extract": "DISABLE_EXTRACTION=false yarn workspace @shm/site dev",
"desktop": "concurrently -n \"DESKTOP:APP,UI\" -c \"blue,green\" -p \"[{name}]\" \"yarn workspace @shm/desktop dev\" \"yarn watch\"",
"desktop:make": "yarn build && yarn workspace @shm/desktop make",
"desktop:package": "yarn build && yarn workspace @shm/desktop package",
"desktop:test:package": "yarn build && yarn workspace @shm/desktop package:test",
"desktop:publish": "yarn build && yarn workspace @shm/desktop publish",
"desktop:test": "yarn workspace @shm/desktop test",
"desktop:test:only": "yarn workspace @shm/desktop test:only",
"desktop:devtools": "yarn workspace @shm/desktop devtools",
"watch": "yarn workspaces foreach -pi run watch",
"fix": "manypkg fix",
"build": "yarn ui:build",
"docs": "yarn workspace @shm/docs start",
"ui:build": "yarn workspace @shm/ui generate && yarn workspace @shm/ui build"
},
"repository": "github:mintterhypermedia/mintter",
"packageManager": "yarn@3.6.1",
"workspaces": [
"frontend/apps/*",
"frontend/packages/*",
"docs"
],
"dependencies": {
"@babel/runtime": "7.18.9",
"@bufbuild/protoc-gen-es": "1.4.1",
"@connectrpc/protoc-gen-connect-es": "1.1.3",
"@manypkg/cli": "0.19.2",
"@nderscore/tamagui-typescript-plugin": "0.5.4",
"cross-env": "7.0.3",
"prettier": "3.0.2",
"react-native": "0.75.2",
"react-native-svg": "15.6.0",
"typescript": "5.5.2"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"babel-plugin-react-native-web": "0.19.9",
"concurrently": "8.2.1",
"playwright": "1.40.1",
"ts-node": "10.9.1"
}
}