-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.77 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
{
"name": "frw-monorepo",
"version": "1.0.0",
"private": true,
"description": "Flow Reference Wallet Monorepo",
"scripts": {
"build": "pnpm -r build",
"build:packages": "pnpm -F './packages/**' build",
"build:extension": "pnpm -F frw-extension build:dev",
"build:rn": "pnpm -F FRWRN bundle:android && pnpm -F FRWRN bundle:ios",
"dev": "pnpm -r --parallel build:watch",
"dev:packages": "pnpm -F './packages/**' --parallel build:watch",
"dev:extension": "pnpm -F frw-extension build:dev",
"dev:rn": "pnpm -F FRWRN start",
"dev:rn:full": "pnpm -F './packages/**' --parallel build:watch & pnpm -F FRWRN start",
"clean": "pnpm -r clean && rm -rf **/node_modules && pnpm install",
"test": "pnpm -r --filter='!FRWRN' test",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"lint:packages": "pnpm -r lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:packages": "pnpm -r format:fix",
"typecheck": "pnpm -r typecheck",
"translate": "pnpm -F @onflow/frw-screens translate",
"optimize-images": "node scripts/bulk-optimize-images.js",
"prepare": "husky",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^9.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^13.0.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@tamagui/animations-react-native": "^1.132.20",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.2"
},
"pnpm": {
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.2",
"@react-native/gradle-plugin": "0.79.2",
"@react-native/codegen": "0.79.2",
"@react-native/assets-registry": "0.79.2",
"@react-native/js-polyfills": "0.79.2",
"@react-native/normalize-colors": "0.79.2",
"@react-native/virtualized-lists": "0.79.2",
"typescript": "5.7.2"
}
}
}