-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.87 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
{
"name": "openpostings",
"version": "2.0.1",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"server": "node server/index.js",
"mcp:apply-agent": "node server/mcp-apply-server.js",
"prepare:android:backend": "node ./scripts/android/prepare-node-backend.mjs",
"postinstall": "patch-package",
"start": "expo start",
"web": "expo start --web",
"android": "npm run prepare:android:backend && expo run:android",
"windows": "npx @react-native-community/cli run-windows",
"export_windows_build": "powershell -ExecutionPolicy Bypass -File ./scripts/windows/export-windows-msi.ps1",
"test:windows": "jest --config jest.config.windows.js",
"test:backend": "node --check server/index.js && node --check server/mcp-apply-server.js",
"test:backend:seeded-source": "node server/tests/seeded-source-parser.test.js",
"lite:build-chunks": "node ./scripts/lite/build-lite-chunks.mjs",
"lite:benchmark": "node ./scripts/lite/benchmark-lite-pipeline.mjs",
"ios": "expo run:ios"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@react-native-community/netinfo": "^12.0.1",
"babel-preset-expo": "~54.0.10",
"cors": "^2.8.6",
"expo": "~54.0.0",
"expo-file-system": "^55.0.19",
"express": "^5.2.1",
"nodejs-mobile-react-native": "^18.20.4",
"react": "^19.1.4",
"react-dom": "^19.1.4",
"react-native": "0.81.6",
"react-native-background-actions": "^4.1.0",
"react-native-web": "^0.21.0",
"react-native-windows": "0.81.12",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@react-native/metro-config": "^0.81.6",
"@rnx-kit/jest-preset": "^0.1.17",
"patch-package": "^8.0.1"
},
"react-native-windows": {
"init-windows": {
"name": "openpostings",
"namespace": "openpostings",
"template": "cpp-app"
}
}
}