create-fullstack-boilerplate 2.1.11 → 2.2.0
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/package.json +60 -20
- package/template/Frontend/package-lock.json +421 -63
- package/template/Frontend/package.json +2 -1
- package/template/Frontend/src/App.jsx +2 -0
- package/template/Frontend/src/config/routes.js +9 -1
- package/template/Frontend/src/pages/Architecture.jsx +137 -0
- package/template/Frontend/src/pages/Dashboard.jsx +503 -116
package/package.json
CHANGED
|
@@ -1,46 +1,86 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fullstack-boilerplate",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "A powerful CLI tool to generate fully configured full-stack applications with React frontend and Express backend. Includes authentication middleware, database configuration, protected routes, route-based Axios instances, and encryption setup - all ready with a single command.",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
6
7
|
"bin": {
|
|
7
8
|
"create-fullstack-boilerplate": "index.js"
|
|
8
9
|
},
|
|
9
10
|
"preferGlobal": false,
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=20"
|
|
12
|
-
},
|
|
13
11
|
"files": [
|
|
14
12
|
"index.js",
|
|
15
|
-
"lib",
|
|
16
|
-
"template"
|
|
13
|
+
"lib/",
|
|
14
|
+
"template/",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
20
20
|
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/mhuzaifi0604/react-boilerplate.git"
|
|
24
|
-
},
|
|
25
21
|
"keywords": [
|
|
26
22
|
"fullstack",
|
|
27
23
|
"boilerplate",
|
|
28
24
|
"react",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
25
|
+
"express",
|
|
26
|
+
"nodejs",
|
|
27
|
+
"sequelize",
|
|
28
|
+
"authentication",
|
|
29
|
+
"cli-tool",
|
|
30
|
+
"project-generator",
|
|
31
|
+
"fullstack-template",
|
|
32
|
+
"react-boilerplate",
|
|
33
|
+
"express-boilerplate",
|
|
34
|
+
"auth-middleware",
|
|
35
|
+
"protected-routes",
|
|
36
|
+
"database-setup",
|
|
37
|
+
"axios-instance",
|
|
38
|
+
"encryption",
|
|
39
|
+
"backend-template",
|
|
40
|
+
"frontend-template",
|
|
41
|
+
"fullstack-app",
|
|
42
|
+
"react-express",
|
|
43
|
+
"node-boilerplate",
|
|
44
|
+
"jwt-auth",
|
|
45
|
+
"sequelize-setup",
|
|
46
|
+
"route-protection",
|
|
47
|
+
"muhammad-huzaifa",
|
|
48
|
+
"huzaifi0604",
|
|
49
|
+
"mhuzaifi0604",
|
|
50
|
+
"huzaifa",
|
|
51
|
+
"starter-template",
|
|
52
|
+
"project-scaffolding",
|
|
53
|
+
"developer-tools",
|
|
54
|
+
"fullstack-starter",
|
|
55
|
+
"create-fullstack-boilerplate",
|
|
56
|
+
"create-fullstack-app",
|
|
57
|
+
"create-fullstack-project"
|
|
33
58
|
],
|
|
59
|
+
"author": {
|
|
60
|
+
"name": "Muhammad Huzaifa",
|
|
61
|
+
"email": "huzzaifaasim@gmail.com",
|
|
62
|
+
"url": "https://github.com/mhuzaifi0604"
|
|
63
|
+
},
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"repository": {
|
|
66
|
+
"type": "git",
|
|
67
|
+
"url": "git+https://github.com/mhuzaifi0604/Full-Stack-Boilerplate.git"
|
|
68
|
+
},
|
|
69
|
+
"bugs": {
|
|
70
|
+
"url": "https://github.com/mhuzaifi0604/Full-Stack-Boilerplate/issues"
|
|
71
|
+
},
|
|
72
|
+
"homepage": "https://github.com/mhuzaifi0604/Full-Stack-Boilerplate#readme",
|
|
34
73
|
"dependencies": {
|
|
35
74
|
"cpy": "^12.1.0",
|
|
36
75
|
"execa": "^5.1.1",
|
|
37
76
|
"fs-extra": "^11.3.2",
|
|
38
77
|
"inquirer": "^8.2.7"
|
|
39
78
|
},
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
"bugs": {
|
|
43
|
-
"url": "https://github.com/mhuzaifi0604/react-boilerplate/issues"
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=14.0.0"
|
|
44
81
|
},
|
|
45
|
-
"
|
|
82
|
+
"publishConfig": {
|
|
83
|
+
"access": "public",
|
|
84
|
+
"registry": "https://registry.npmjs.org/"
|
|
85
|
+
}
|
|
46
86
|
}
|