forked from parse-community/parse-server-example
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.52 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
{
"name": "bloom-parse-server",
"version": "2.0.0",
"description": "Parse server for bloomlibrary.org",
"repository": {
"type": "git",
"url": "https://github.com/BloomBooks/bloom-parse-server"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node index.js",
"smoke": "node scripts/smoke-server.js",
"lint": "eslint --cache ./cloud && eslint --cache index.js",
"postinstall": "patch-package"
},
"dependencies": {
"axios": "^1.18.1",
"express": "^5.2.1",
"jsonwebtoken": "9.0.3",
"mailgun.js": "13.2.0",
"parse-dashboard": "9.1.1",
"parse-server": "8.6.84",
"patch-package": "8.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "10.6.0",
"globals": "^17.7.0",
"mongodb-memory-server": "^11.2.0",
"prettier": "3.9.4"
},
"// overrides: parse-server 8.x pins @parse/push-adapter 6.x, whose @parse/node-gcm dep": " ",
"// drags in critically-vulnerable request/form-data, and whose node-apn uses vulnerable": " ",
"// node-forge. We don't use push at all; adapter 8.4.0 (what parse-server 9 ships) fixes": " ",
"// both chains. ws <=8.20.1 has memory-disclosure/DoS advisories.": " ",
"overrides": {
"@parse/push-adapter": "8.4.0",
"ws": "^8.21.0",
"uuid": "^11.1.1"
},
"// On the server, node version is set in Configuration > Application settings > WEBSITE_NODE_DEFAULT_VERSION": " ",
"// (22.22.2 as of July 2026; see UPGRADE-PLAN.md)": " ",
"engines": {
"node": ">=22.13 <23 || >=24.11 <25"
}
}