-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.64 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
{
"name": "mc-builder",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "yarn workspaces run lint",
"ts": "yarn workspaces run ts",
"postinstall": "patch-package && yarn workspace @mc-builder/shared generateTypes",
"dev:android": "yarn workspace @mc-builder/mobile dev:android",
"dev:ios": "yarn workspace @mc-builder/mobile dev:ios",
"dev:web": "yarn workspace @mc-builder/web dev",
"build:mobile": "yarn workspace @mc-builder/mobile build:push",
"build:web": "yarn workspace @mc-builder/web build && yarn workspace @mc-builder/web start",
"serve:mobile": "yarn workspace @mc-builder/mobile start",
"serve:web": "yarn workspace @mc-builder/web start",
"clean": "yarn workspace @mc-builder/mobile clean && yarn workspace @mc-builder/web clean"
},
"dependencies": {
"js-base64": "^3.7.7",
"lodash": "^4.17.15",
"marvelsdb-json-data": "https://github.com/rdonnelly/marvelsdb-json-data.git#main",
"memoize-one": "^6.0.0",
"nanoid": "^5.0.9",
"yaqrcode": "^0.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@react-native/eslint-config": "^0.73.2",
"@rnx-kit/dep-check": "^1.14.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/lodash": "^4.17.13",
"@types/node": "^18.0.0",
"eslint": "^8.50.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}