@seip/blue-bird 0.2.0 → 0.2.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/.env_example +11 -11
- package/LICENSE +21 -21
- package/README.md +80 -80
- package/backend/index.js +12 -12
- package/backend/routes/app.js +52 -40
- package/core/app.js +182 -182
- package/core/auth.js +69 -69
- package/core/cli/component.js +42 -42
- package/core/cli/init.js +117 -116
- package/core/cli/react.js +408 -393
- package/core/cli/route.js +42 -42
- package/core/config.js +41 -41
- package/core/logger.js +80 -80
- package/core/middleware.js +27 -27
- package/core/router.js +134 -134
- package/core/template.js +283 -220
- package/core/upload.js +76 -76
- package/core/validate.js +291 -291
- package/frontend/index.html +20 -0
- package/package.json +40 -43
package/package.json
CHANGED
|
@@ -1,44 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@seip/blue-bird",
|
|
3
|
-
|
|
4
|
-
"description": "Express + React opinionated framework with
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"blue-bird": "core/cli/init.js"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/seip25/Blue-bird.git"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"express",
|
|
15
|
-
"react",
|
|
16
|
-
"framework",
|
|
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
|
-
"jsonwebtoken": "^9.0.2",
|
|
42
|
-
"multer": "^2.0.2"
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@seip/blue-bird",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "Express + React opinionated framework with SPA or API architecture and built-in JWT auth",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"blue-bird": "core/cli/init.js"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/seip25/Blue-bird.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"express",
|
|
15
|
+
"react",
|
|
16
|
+
"framework",
|
|
17
|
+
"vite"
|
|
18
|
+
],
|
|
19
|
+
"author": "Seip25",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/seip25/Blue-bird/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://seip25.github.io/Blue-bird/",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "node --watch --env-file=.env backend/index.js",
|
|
27
|
+
"start": "node --env-file=.env backend/index.js",
|
|
28
|
+
"create-react-app": "node core/cli/react.js",
|
|
29
|
+
"react": "node core/cli/react.js",
|
|
30
|
+
"init": "node core/cli/init.js",
|
|
31
|
+
"route": "node core/cli/route.js"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"chalk": "^5.6.2",
|
|
35
|
+
"cookie-parser": "^1.4.7",
|
|
36
|
+
"cors": "^2.8.6",
|
|
37
|
+
"express": "^5.2.1",
|
|
38
|
+
"jsonwebtoken": "^9.0.2",
|
|
39
|
+
"multer": "^2.0.2"
|
|
40
|
+
}
|
|
44
41
|
}
|