parse-dashboard 4.0.0 → 4.1.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -25,7 +25,9 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
27
|
- [Getting Started](#getting-started)
|
|
28
|
-
- [
|
|
28
|
+
- [Compatibility](#compatibility)
|
|
29
|
+
- [Parse Server](#parse-server)
|
|
30
|
+
- [Node.js](#nodejs)
|
|
29
31
|
- [Configuring Parse Dashboard](#configuring-parse-dashboard)
|
|
30
32
|
- [File](#file)
|
|
31
33
|
- [Environment variables](#environment-variables)
|
|
@@ -60,10 +62,6 @@ Parse Dashboard is a standalone dashboard for managing your [Parse Server](https
|
|
|
60
62
|
|
|
61
63
|
# Getting Started
|
|
62
64
|
|
|
63
|
-
[Node.js](https://nodejs.org) version >= 12 is required to run the dashboard. You also need to be using Parse Server version 2.1.4 or higher.
|
|
64
|
-
|
|
65
|
-
# Local Installation
|
|
66
|
-
|
|
67
65
|
Install the dashboard from `npm`.
|
|
68
66
|
|
|
69
67
|
```
|
|
@@ -90,6 +88,25 @@ After starting the dashboard, you can visit http://localhost:4040 in your browse
|
|
|
90
88
|
|
|
91
89
|

|
|
92
90
|
|
|
91
|
+
## Compatibility
|
|
92
|
+
|
|
93
|
+
### Parse Server
|
|
94
|
+
Parse Dashboard is compatible with the following Parse Server versions.
|
|
95
|
+
|
|
96
|
+
| Parse Dashboard Version | Parse Server Version | Compatible |
|
|
97
|
+
|-------------------------|----------------------|------------|
|
|
98
|
+
| >=1.0 | >= 2.1.4 | ✅ Yes |
|
|
99
|
+
|
|
100
|
+
### Node.js
|
|
101
|
+
Parse Dashboard is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date.
|
|
102
|
+
|
|
103
|
+
| Version | Latest Version | End-of-Life | Compatible |
|
|
104
|
+
|------------|----------------|-------------|--------------|
|
|
105
|
+
| Node.js 12 | 12.22.10 | April 2022 | ✅ Yes |
|
|
106
|
+
| Node.js 14 | 14.19.0 | April 2023 | ✅ Yes |
|
|
107
|
+
| Node.js 16 | 16.10.0 | April 2024 | ✅ Yes |
|
|
108
|
+
| Node.js 17 | 17.x | June 2022 | ❌ Not tested |
|
|
109
|
+
|
|
93
110
|
## Configuring Parse Dashboard
|
|
94
111
|
|
|
95
112
|
### File
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-dashboard",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.1.0-alpha.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ParsePlatform/parse-dashboard"
|
|
@@ -35,29 +35,29 @@
|
|
|
35
35
|
"LICENSE"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@babel/runtime": "7.
|
|
38
|
+
"@babel/runtime": "7.17.2",
|
|
39
39
|
"bcryptjs": "2.3.0",
|
|
40
|
-
"body-parser": "1.19.
|
|
40
|
+
"body-parser": "1.19.2",
|
|
41
41
|
"commander": "6.2.1",
|
|
42
42
|
"connect-flash": "0.1.1",
|
|
43
|
-
"cookie-session": "2.0.0
|
|
43
|
+
"cookie-session": "2.0.0",
|
|
44
44
|
"copy-to-clipboard": "3.3.1",
|
|
45
45
|
"csurf": "1.11.0",
|
|
46
|
-
"express": "4.17.
|
|
47
|
-
"graphiql": "1.5.
|
|
48
|
-
"graphql": "16.0
|
|
46
|
+
"express": "4.17.3",
|
|
47
|
+
"graphiql": "1.5.16",
|
|
48
|
+
"graphql": "16.3.0",
|
|
49
49
|
"history": "4.10.1",
|
|
50
50
|
"immutable": "4.0.0",
|
|
51
51
|
"immutable-devtools": "0.1.5",
|
|
52
52
|
"inquirer": "8.2.0",
|
|
53
53
|
"js-beautify": "1.14.0",
|
|
54
|
-
"otpauth": "7.0.
|
|
54
|
+
"otpauth": "7.0.11",
|
|
55
55
|
"package-json": "7.0.0",
|
|
56
|
-
"parse": "3.4.
|
|
57
|
-
"passport": "0.5.
|
|
56
|
+
"parse": "3.4.1",
|
|
57
|
+
"passport": "0.5.2",
|
|
58
58
|
"passport-local": "1.0.0",
|
|
59
|
-
"prismjs": "1.
|
|
60
|
-
"prop-types": "15.
|
|
59
|
+
"prismjs": "1.27.0",
|
|
60
|
+
"prop-types": "15.8.1",
|
|
61
61
|
"qrcode": "1.5.0",
|
|
62
62
|
"react": "16.14.0",
|
|
63
63
|
"react-ace": "9.5.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react-router-dom": "5.3.0",
|
|
73
73
|
"regenerator-runtime": "0.13.8",
|
|
74
74
|
"semver": "7.3.4",
|
|
75
|
-
"typescript": "4.5.
|
|
75
|
+
"typescript": "4.5.5"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@actions/core": "1.2.6",
|
|
@@ -82,12 +82,14 @@
|
|
|
82
82
|
"@babel/plugin-transform-runtime": "7.16.4",
|
|
83
83
|
"@babel/preset-env": "7.16.4",
|
|
84
84
|
"@babel/preset-react": "7.16.0",
|
|
85
|
+
"@saithodev/semantic-release-backmerge": "2.1.2",
|
|
85
86
|
"@semantic-release/changelog": "5.0.1",
|
|
86
87
|
"@semantic-release/commit-analyzer": "8.0.1",
|
|
87
88
|
"@semantic-release/git": "9.0.0",
|
|
88
89
|
"@semantic-release/github": "7.2.3",
|
|
89
90
|
"@semantic-release/npm": "7.1.3",
|
|
90
91
|
"@semantic-release/release-notes-generator": "9.0.3",
|
|
92
|
+
"@types/jest": "27.4.0",
|
|
91
93
|
"all-node-versions": "8.0.0",
|
|
92
94
|
"babel-eslint": "10.1.0",
|
|
93
95
|
"babel-loader": "8.2.3",
|
|
@@ -101,8 +103,8 @@
|
|
|
101
103
|
"http-server": "14.0.0",
|
|
102
104
|
"jest": "24.8.0",
|
|
103
105
|
"madge": "5.0.1",
|
|
104
|
-
"marked": "0.
|
|
105
|
-
"node-sass": "
|
|
106
|
+
"marked": "4.0.10",
|
|
107
|
+
"node-sass": "7.0.0",
|
|
106
108
|
"null-loader": "4.0.1",
|
|
107
109
|
"path-to-regexp": "3.2.0",
|
|
108
110
|
"puppeteer": "3.0.0",
|
|
@@ -126,7 +128,6 @@
|
|
|
126
128
|
"build": "webpack --node-env=production --config webpack/production.config.js && webpack --config webpack/PIG.config.js",
|
|
127
129
|
"test": "jest",
|
|
128
130
|
"lint": "eslint . --ignore-path .gitignore --cache",
|
|
129
|
-
"pretest": "npm run lint",
|
|
130
131
|
"generate": "node scripts/generate.js",
|
|
131
132
|
"prepare": "webpack --config webpack/publish.config.js --progress",
|
|
132
133
|
"start": "node ./Parse-Dashboard/index.js",
|
|
@@ -147,6 +148,9 @@
|
|
|
147
148
|
"transform": {
|
|
148
149
|
".*": "<rootDir>/testing/preprocessor.js"
|
|
149
150
|
},
|
|
151
|
+
"moduleNameMapper": {
|
|
152
|
+
"\\.(css|less)$": "<rootDir>/testing/styleMock.js"
|
|
153
|
+
},
|
|
150
154
|
"unmockedModulePathPatterns": [
|
|
151
155
|
"react",
|
|
152
156
|
"react-dom",
|