forked from parse-community/parse-server-example
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 KB
/
package.json
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
{
"name": "bloom-parse-server",
"version": "1.4.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",
"lint": "eslint --cache ./cloud && eslint --cache index.js",
"postinstall": "patch-package"
},
"// mailgun-js is deprecated; we should replace it with officially-supported mailgun.js": " ",
"dependencies": {
"axios": "^1.7.7",
"express": "4.18.2",
"jsonwebtoken": "9.0.2",
"mailgun-js": "0.22.0",
"parse-dashboard": "5.3.0",
"parse-server": "7.0.0-alpha.1",
"patch-package": "8.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.21.3",
"eslint": "8.38.0",
"prettier": "2.8.7"
},
"// On the server, this is set in Configuration > Application settings > WEBSITE_NODE_DEFAULT_VERSION": " ",
"// (18.12.1 as of Feb 2023)": " ",
"engines": {
"node": ">=16 <17 || >=18 <19"
}
}