This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
134 lines (134 loc) · 5.04 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "showtime",
"version": "156.0.1",
"private": true,
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-diff": "^2.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nativewind": "^2.0.11",
"patch-package": "^7.0.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "insiders",
"react-native-os": "^1.2.6",
"turbo": "^1.10.9"
},
"workspaces": [
"apps/expo",
"apps/next",
"apps/storybook-react",
"packages/*"
],
"scripts": {
"create-screen": "node scripts/showtime-cli",
"dev": "yarn turbo run dev --parallel --no-cache",
"dev:expo": "yarn turbo run dev --parallel --no-cache --scope=@showtime/expo",
"dev:next": "yarn turbo run dev --parallel --no-cache --scope=@showtime/next",
"dev:next-storybook": "yarn turbo run dev --parallel --no-cache --scope=@showtime/storybook-react",
"dev:web": "yarn turbo run dev --parallel --no-cache --scope=@showtime/next --scope=@showtime/storybook-react",
"dev:mobile": "yarn turbo run dev --parallel --no-cache --scope=@showtime/expo",
"build": "yarn turbo run build",
"build:expo": "yarn turbo run build --scope=@showtime/expo",
"build:next": "yarn turbo run build --scope=@showtime/next",
"build:next-storybook": "yarn turbo run build --scope=@showtime/storybook-react",
"start:next": "yarn turbo run start --scope=@showtime/next",
"lint": "yarn turbo run lint",
"lint:fix": "yarn turbo run lint:fix",
"lint:report": "yarn turbo run lint:report",
"graph": "yarn turbo:build --graph",
"graph:next": "yarn turbo:build:next --graph",
"yolo": "yarn turbo:dev:next & yarn workspace @showtime/expo ios & yarn workspace @showtime/expo android",
"clean": "yarn clean:turbo & yarn clean:node-modules & yarn clean:build",
"clean:turbo": "rm -rf ./node_modules/.cache/turbo",
"clean:build": "rm -rf apps/.next",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"postinstall": "patch-package && husky install",
"clean:native": "yarn clean && rm -rf apps/expo/android && rm -rf apps/expo/ios && rm -rf apps/expo/.expo",
"test:expo": "cd apps/expo && yarn test",
"upgrade:design-system": "yarn up '@showtime-xyz/universal.*'"
},
"resolutions": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.3",
"babel-preset-expo": "9.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"@jest/create-cache-key-function": "29.2.1",
"jest-runtime": "29.5.0",
"react-native-reanimated": "3.5.4",
"@types/react": "~18.2.14",
"@ethersproject/bignumber": "5.7.0",
"@ethersproject/signing-key": "5.7.0",
"next": "13.4.1",
"react-native-mmkv": "2.10.1",
"react-native-screens": "3.27.0",
"react-native-svg": "14.0.0",
"tailwindcss": "3.3.2",
"framer-motion": "10.16.5"
},
"react-native": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"dns": "dns.js",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_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",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,json,css}": "eslint",
"apps/**/*.{js,jsx,ts,tsx,json,css}": "eslint"
},
"browser": {
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"_stream_readable": "readable-stream/readable",
"_stream_transform": "readable-stream/transform",
"_stream_writable": "readable-stream/writable",
"console": "console-browserify",
"constants": "constants-browserify",
"dgram": "react-native-udp",
"dns": "dns.js",
"domain": "domain-browser",
"fs": "react-native-level-fs",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tls": false,
"tty": "tty-browserify",
"vm": "vm-browserify",
"zlib": "browserify-zlib"
},
"packageManager": "[email protected]"
}