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
119 lines (119 loc) · 4.35 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.35 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
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
{
"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",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"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",
"e2e:build-ios": "detox build -c ios.sim.release",
"e2e:test-ios": "detox test -c ios.sim.release",
"e2e:build-android": "detox build -c android.emu.release",
"e2e:test-android": "detox test -c android.emu.release"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/datetimepicker": "^9.1.0",
"@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-clipboard": "~7.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"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@config-plugins/detox": "^11.0.0",
"@expo/cli": "^0.24.20",
"@react-native-community/cli": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@typechain/ethers-v5": "^11.1.2",
"@types/detox": "^17.14.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.0.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"detox": "^20.50.1",
"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-circus": "^30.3.0",
"jest-expo": "~53.0.5",
"lint-staged": "^16.4.0",
"prettier": "^3.2.5",
"semantic-release": "^24.2.9",
"ts-jest": "^29.4.6",
"typechain": "^8.3.2",
"typescript": "~5.8.3"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Smartdevs17/SubTrackr.git"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}