-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.47 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.47 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
{
"name": "routemaster",
"version": "1.0.0",
"private": true,
"npmConfig": {
"legacy-peer-deps": true
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/native": "^7.1.26",
"@react-navigation/native-stack": "^7.9.0",
"@react-navigation/stack": "^7.6.13",
"@types/node-cron": "^3.0.11",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"expo": "^54.0.30",
"expo-constants": "^18.0.12",
"expo-dev-client": "^6.0.20",
"expo-status-bar": "^3.0.9",
"expo-updates": "^29.0.15",
"express": "^4.17.1",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"node-cron": "^4.2.1",
"nodemailer": "^6.10.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"prom-client": "^15.1.3",
"react": "18.2.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "^2.30.0",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.19.0",
"react-native-web": "^0.19.13",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.4",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"supertest": "^7.0.0"
},
"overrides": {},
"scripts": {
"start": "node dist/server/server.js",
"client": "vite",
"server": "node dist/server/server.js",
"build": "tsc && cp -R server/sql dist/server/ && cp -R server/modules dist/server/",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"test": "vitest",
"dev": "ts-node-dev --respawn --transpile-only server/server.ts",
"android": "expo run:android",
"ios": "expo run:ios",
"action-grid:runner": "node action-grid/runner.mjs",
"action-grid:verify": "node action-grid/verify-submissions.mjs",
"action-grid:sheet-sync": "node action-grid/sheet-sync.mjs",
"action-grid:view": "node action-grid/sheet-sync.mjs",
"action-grid:show": "node action-grid/show-latest-html.mjs",
"action-grid:task": "node action-grid/task-executor.mjs",
"action-grid:tg-listener": "node action-grid/tg-listener.mjs",
"action-grid:up": "node action-grid/control.mjs up",
"action-grid:down": "node action-grid/control.mjs down",
"action-grid:status": "node action-grid/control.mjs status",
"action-grid:logs": "node action-grid/control.mjs logs"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.3.0",
"@types/pg": "^8.15.5",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^5.0.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"heroku-run-build-script": true
}