This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "arcade",
"version": "0.1.0",
"description": "Arcade monorepo",
"private": true,
"license": "AGPL-3.0",
"repository": "https://github.com/ArcadeCity/arcade",
"scripts": {
"clean": "yarn workspaces run clean",
"watch": "rm -rf packages/components/dist && yarn workspace @arcadecity/components compile -w",
"dev": "yarn run dev:arcade.city",
"dev:arcade.city": "yarn workspace @arcadecity/arcade.city dev",
"dev:city-mobile": "yarn workspace @arcadecity/city-mobile start",
"dev:city-web": "yarn workspace @arcadecity/city-web start",
"dev:explorer": "yarn workspace @arcadecity/explorer start",
"dev:ride": "yarn workspace @arcadecity/ride start",
"dev:wallet": "yarn workspace @arcadecity/wallet-web start",
"buildsite": "yarn workspace @arcadecity/arcade.city build",
"format": "yarn workspaces run format",
"patch-package": "patch-package",
"pods": "yarn workspace @arcadecity/city-mobile pods",
"postinstall": "expo-yarn-workspaces check-workspace-dependencies && rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack --yarn && yarn workspace @arcadecity/city-mobile postinstall && yarn patch-package"
},
"dependencies": {
"moment": "2.29.1",
"react-hook-form": "7.6.6",
"react-native": "0.64.2",
"react-native-crypto": "2.2.0",
"react-query": "2.26.4"
},
"devDependencies": {
"asyncstorage-down": "^4.2.0",
"concurrently": "5.3.0",
"cross-env": "7.0.3",
"expo-yarn-workspaces": "1.5.2",
"invariant": "^2.2.4",
"patch-package": "6.2.2",
"prettier": "2.3.1",
"shx": "0.3.3",
"typescript": "4.3.4",
"util-deprecate": "^1.0.2",
"xmlhttprequest": "^1.8.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
},
"author": {
"name": "Christopher David",
"email": "chris@arcade.city",
"url": "https://twitter.com/ArcadeCityMayor"
},
"react-native": {
"http": "@tradle/react-native-http",
"https": "https-browserify",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"crypto": "react-native-crypto",
"path": "path-browserify",
"fs": "react-native-level-fs"
},
"browser": {
"http": "@tradle/react-native-http",
"https": "https-browserify",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"crypto": "react-native-crypto",
"path": "path-browserify",
"fs": "react-native-level-fs"
},
"resolutions": {
"react": "17.0.2"
}
}