-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.72 KB
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
{
"name": "@arcadecity/arcade",
"version": "6.0.0",
"description": "The Bitcoin gig economy",
"main": "index.js",
"repository": "git@github.com:ArcadeCity/arcade.git",
"author": "Christopher David <chris@arcade.city>",
"license": "CC0-1.0",
"private": true,
"devDependencies": {
"@types/react": "18.0.15",
"@types/react-native": "0.69.5",
"prettier": "2.7.1",
"turbo": "^1.4.2",
"typescript": "^4.7.4"
},
"workspaces": [
"apps/arcade-chat",
"apps/arcade-city",
"apps/expo",
"apps/next",
"packages/app",
"packages/tsconfig",
"packages/ui",
"packages/use-arcade"
],
"resolutions": {
"@expo/config-plugins": "^5.0.0",
"@noble/hashes": "1.1.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.4"
},
"scripts": {
"web": "yarn turbo run dev --parallel --no-cache --scope=@arcadecity/next",
"ac": "yarn workspace @arcadecity/arcade-chat run ios",
"dev": "yarn postinstall && turbo run dev",
"dev:ac": "yarn turbo run ios --parallel --no-cache --scope=@arcadecity/arcade-city",
"dev:ac:web": "yarn turbo run web --parallel --no-cache --scope=@arcadecity/arcade-city",
"dev:bullrun": "yarn turbo run dev --parallel --no-cache --scope=@arcadecity/bullrun-demo",
"dev:next": "yarn turbo run dev --parallel --no-cache --scope=@arcadecity/next",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"postinstall": "npx patch-package"
},
"browser": {
"_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"
},
"react-native": {
"_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"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
}