This repository was archived by the owner on May 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.61 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
{
"license": "BUSL-1.1",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"lint:strict": "eslint . --ext .js,.jsx --max-warnings=0",
"format": "prettier --write '**/*.{js,jsx,json}'",
"format:check": "prettier --check '**/*.{js,jsx,json}'",
"dead-code": "knip",
"audit": "npm audit --audit-level=high",
"secrets": "secretlint '**/*.{js,jsx,json}'",
"validate-vibe": "node scripts/validate-vibe.js",
"validate-docs": "node scripts/validate-docs.js",
"review": "echo '\\n=== FORKIT REVIEW SUITE ===' && echo '\\n--- 1/7 Linting ---' && npm run lint && echo '\\n--- 2/7 Formatting ---' && npm run format:check && echo '\\n--- 3/7 Dead Code ---' && npm run dead-code && echo '\\n--- 4/7 Dependency Audit ---' && npm run audit && echo '\\n--- 5/7 Secret Scan ---' && npm run secrets && echo '\\n--- 6/7 Vibe Check ---' && npm run validate-vibe && echo '\\n--- 7/7 Doc Consistency ---' && npm run validate-docs && echo '\\n=== ALL CHECKS PASSED ==='",
"review:fix": "npm run lint:fix && npm run format",
"test": "jest"
},
"jest": {
"setupFiles": [
"./__tests__/setup.js"
],
"testPathIgnorePatterns": [
"__tests__/setup.js",
"__tests__/__mocks__/"
],
"transformIgnorePatterns": [
"node_modules/(?!(expo|@expo|react-native|@react-native)/)"
],
"moduleNameMapper": {
"^expo-store-review$": "<rootDir>/__tests__/__mocks__/expo-store-review.js"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@expo-google-fonts/montserrat": "^0.4.2",
"@expo/app-integrity": "~0.1.10",
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "12.0.1",
"@sentry/react-native": "~7.11.0",
"expo": "^55.0.15",
"expo-constants": "~55.0.9",
"expo-crypto": "~55.0.14",
"expo-dev-client": "~55.0.27",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.12",
"expo-font": "~55.0.4",
"expo-haptics": "~55.0.14",
"expo-linear-gradient": "~55.0.13",
"expo-linking": "~55.0.13",
"expo-location": "~55.1.8",
"expo-sharing": "~55.0.18",
"expo-store-review": "~55.0.13",
"expo-updates": "~55.0.20",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-native": "0.85.1",
"react-native-iap": "^14.7.19",
"react-native-nitro-modules": "^0.35.4",
"react-native-safe-area-context": "~5.7.0",
"react-native-svg": "15.15.4",
"react-native-web": "^0.21.0"
},
"private": true,
"name": "AppFiles",
"version": "1.0.0",
"devDependencies": {
"@babel/core": "^7.29.0",
"@secretlint/core": "^11.7.1",
"@secretlint/secretlint-rule-preset-recommend": "^11.7.1",
"babel-jest": "^30.3.0",
"babel-preset-expo": "^55.0.11",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-react-native-a11y": "^3.5.1",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^0.25.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"knip": "^6.4.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"secretlint": "^11.7.1",
"typescript": "^5.9.3"
}
}