forked from Smartdevs17/SubTrackr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.26 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
84
85
86
87
88
89
90
{
"name": "subtrackr",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"build": "expo export",
"build:android": "expo run:android --variant release",
"contracts:test": "cd contracts && cargo test",
"contracts:fmt": "cd contracts && cargo fmt --check",
"contracts:clippy": "cd contracts && cargo clippy --all-targets -- -D warnings",
"contracts:build": "cd contracts && cargo build --release",
"contracts:codegen": "typechain --target ethers-v5 --out-dir src/contracts/types \"src/contracts/abis/**/*.json\"",
"contracts:codegen:check": "npm run contracts:codegen && git diff --exit-code -- src/contracts/types src/contracts/abis",
"prebuild": "npm run contracts:codegen",
"pretypecheck": "npm run contracts:codegen",
"ci": "npm run lint && npm run contracts:codegen:check && npx tsc --noEmit && npm run test && npm run contracts:test && npm run contracts:fmt && npm run contracts:clippy",
"prepare": "husky"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@reown/appkit-ethers-react-native": "^1.3.0",
"@superfluid-finance/sdk-core": "^0.9.0",
"@walletconnect/core": "^2.21.8",
"@walletconnect/react-native-compat": "^2.21.8",
"@walletconnect/utils": "^2.21.8",
"@walletconnect/web3wallet": "^1.16.1",
"ethers": "^5.8.0",
"expo": "~53.0.20",
"expo-application": "~6.1.5",
"expo-notifications": "^0.31.5",
"expo-status-bar": "~2.2.3",
"graphql": "^16.13.1",
"react": "19.0.0",
"react-native": "0.79.5",
"react-native-gesture-handler": "~2.24.0",
"react-native-get-random-values": "~1.11.0",
"react-native-modal": "14.0.0-rc.1",
"react-native-qrcode-svg": "^6.3.15",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"zustand": "^4.5.2",
"expo-clipboard": "~7.1.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@expo/cli": "^0.24.20",
"@react-native-community/cli": "^20.0.0",
"@typechain/ethers-v5": "^11.1.2",
"@types/jest": "^29.5.12",
"@types/react": "~19.0.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.0.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "~53.0.5",
"lint-staged": "^16.4.0",
"prettier": "^3.2.5",
"typechain": "^8.3.2",
"typescript": "~5.8.3"
},
"private": true,
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}