create-krizz 1.0.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.
Files changed (2) hide show
  1. package/bin/index.js +16 -0
  2. package/package.json +20 -0
package/bin/index.js ADDED
@@ -0,0 +1,16 @@
1
+ console.log("Project created 😭🔥");
2
+
3
+ console.log(`
4
+ Next steps:
5
+
6
+ cd ${projectName}
7
+
8
+ npm install (frontend)
9
+ cd frontend && npm install
10
+
11
+ npm install (backend)
12
+ cd backend && npm install
13
+
14
+ Run:
15
+ npm run dev
16
+ `);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "create-krizz",
3
+ "version": "1.0.0",
4
+ "description": "Krizz fullstack pharmacy starter",
5
+ "bin": {
6
+ "create-krizz": "./bin/index.js"
7
+ },
8
+ "dependencies": {
9
+ "degit": "^2.8.4"
10
+ },
11
+ "keywords": [
12
+ "react",
13
+ "nodejs",
14
+ "mysql",
15
+ "pharmacy",
16
+ "starter"
17
+ ],
18
+ "author": "Dan",
19
+ "license": "MIT"
20
+ }