-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 2.86 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
64
65
66
67
68
69
{
"name": "mintter",
"private": true,
"scripts": {
"test": "turbo test --continue",
"validate": "yarn format",
"validate:fix": "yarn format:fix",
"site": "yarn build && cd frontend/apps/site && yarn dev",
"site:prod": "yarn build && yarn workspace @mintter/site build",
"site:serve": "yarn workspace @mintter/site serve",
"site:test": "yarn workspace @mintter/site test",
"site:extract": "DISABLE_EXTRACTION=false yarn workspace @mintter/site dev",
"desktop": "concurrently -n \"DESKTOP:APP,UI\" -c \"blue,green\" -p \"[{name}]\" \"yarn workspace @mintter/desktop dev\" \"yarn watch\"",
"desktop:make": "yarn build && yarn workspace @mintter/desktop make",
"desktop:package": "yarn build && yarn workspace @mintter/desktop package",
"desktop:test:package": "yarn build && yarn workspace @mintter/desktop package:test",
"desktop:publish": "yarn build && yarn workspace @mintter/desktop publish",
"desktop:test": "yarn workspace @mintter/desktop test",
"desktop:test:only": "yarn workspace @mintter/desktop test:only",
"desktop:devtools": "yarn workspace @mintter/desktop devtools",
"watch": "yarn workspaces foreach -pi run watch",
"fix": "manypkg fix",
"build": "yarn ui:build",
"storybook": "yarn storybook:web",
"sb": "yarn storybook:web",
"storybook:web": "yarn build && cd frontend/apps/storybook && yarn dev",
"check-deps": "check-dependency-version-consistency .",
"docs": "yarn workspace @mintter/docs start",
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest",
"generate": "yarn turbo gen",
"ui:build": "yarn workspace @mintter/ui generate && yarn workspace @mintter/ui build",
"gen": "yarn generate",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache'"
},
"repository": "github:mintterteam/mintter",
"packageManager": "[email protected]",
"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",
"@tamagui/cli": "1.90.2",
"check-dependency-version-consistency": "4.1.0",
"cross-env": "7.0.3",
"electron-squirrel-startup": "1.0.0",
"graphql-codegen": "0.4.0",
"node-gyp": "9.3.1",
"prettier": "3.0.2",
"sort-package-json": "2.5.1",
"superjson": "1.13.3",
"tamagui": "1.90.2",
"turbo": "1.11.2",
"typescript": "5.2.2"
},
"devDependencies": {
"@storybook/nextjs": "7.0.26",
"babel-plugin-react-native-web": "0.19.9",
"concurrently": "8.2.1",
"playwright": "^1.40.1",
"ts-node": "10.9.1"
}
}