-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.87 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "hitfactorinfo",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": "20.x.x"
},
"scripts": {
"========================= Dev Scripts ====================": "",
"start": "concurrently -c \"auto\" --names \"API,WEB\" \"npm run start-api\" \"npm run start-web\"",
"test": "tsx --test",
"lint": "eslint ./",
"====================== Production / Build Scripts ================": "",
"prod": "cd api && npm run prod",
"postinstall": "(cd api && npm install); (cd web && npm install && npm run build);",
"========================== Upload Scripts (Render.com Worker/CRON) ========================": "",
"uploadMatches": "NODE_OPTIONS='--max-old-space-size=2048' node --import=tsx scripts/upload/matchesLoop.ts",
"uploadScores": "NODE_OPTIONS='--max-old-space-size=2048' node --import=tsx scripts/upload/scoresLoop.ts",
"uploadMeta": "NODE_OPTIONS='--max-old-space-size=2048' node --import=tsx scripts/upload/statsMetaLoop.ts",
"uploadMembers": "NODE_OPTIONS='--max-old-space-size=2048' node --import=tsx scripts/upload/activeMembers.ts",
"========================= DB Admin Scripts ============================": "",
"hydrate": "node --import=tsx scripts/migrations/rehydrateForCC.ts",
"uspsa": "NODE_OPTIONS='--max-old-space-size=16384' node --import=tsx scripts/experiments/hydrateFromUSPSAJSON.ts",
"dumpprod": "mongodump $MONGO_URL_PROD",
"dumplocal": "mongodump $MONGO_URL_LOCAL",
"restoreprod": "mongorestore --drop $MONGO_URL_PROD dump/theta",
"restorelocal": "mongorestore --drop $MONGO_URL_LOCAL dump/theta",
"===================== Internal (Don't Run Directly) ======================": "",
"start-api": "cd api && npm start",
"start-web": "cd web && npm start"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.51.15",
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"bson": "^6.10.3",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"zenrows": "^1.3.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"lodash.sorteduniqby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"lodash.uniqby": "^4.7.0",
"piscina": "^5.0.0-alpha.0",
"simple-statistics": "^7.8.7",
"undici": "^6.18.2",
"uuid": "^9.0.1"
}
}