-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 29a9641
Showing
221 changed files
with
59,274 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "reinvanoyen/cmf", | ||
"description": "CMF", | ||
"authors": [ | ||
{ | ||
"name": "Rein Van Oyen", | ||
"email": "reinvanoyen@gmail.com" | ||
} | ||
], | ||
"require": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ReinVanOyen\\Cmf\\": "src/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| CMF App Name | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the name of your application. This value is used when the | ||
| framework needs to display the name of the application within the UI | ||
| or in other locations. Of course, you're free to change the value. | ||
| | ||
*/ | ||
|
||
'title' => env('APP_NAME'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Theme image path | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This is the source to the image used in external pages such as the login page. | ||
| This option is provided to allow for quick customization of the CMF panel. | ||
| | ||
*/ | ||
'theme_image_src' => '/vendor/cmf/splash.jpg', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"/public/app.js": "/public/app.js", | ||
"/public/app.css": "/public/app.css" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"dev": "npm run development", | ||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch": "npm run development -- --watch", | ||
"watch-poll": "npm run watch -- --watch-poll", | ||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"prod": "npm run production", | ||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" | ||
}, | ||
"devDependencies": { | ||
"@babel/plugin-proposal-class-properties": "^7.13.0", | ||
"@babel/preset-react": "^7.10.4", | ||
"@inertiajs/inertia": "^0.1.7", | ||
"@inertiajs/inertia-vue": "^0.1.2", | ||
"@tailwindcss/ui": "^0.1.3", | ||
"axios": "^0.19", | ||
"cross-env": "^7.0", | ||
"laravel-jetstream": "^0.0.3", | ||
"laravel-mix": "^5.0.1", | ||
"laravel-mix-artisan-publish": "git://github.com/mzur/laravel-mix-artisan-publish.git", | ||
"lodash": "^4.17.19", | ||
"portal-vue": "^2.1.7", | ||
"postcss-import": "^12.0.1", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"resolve-url-loader": "^3.1.0", | ||
"sass": "^1.26.11", | ||
"sass-loader": "^8.0.2", | ||
"tailwindcss": "^1.3.0", | ||
"vue": "^2.5.17", | ||
"vue-template-compiler": "^2.6.10" | ||
}, | ||
"dependencies": { | ||
"react-trix": "^0.8.0", | ||
"react-trix-rte": "^1.0.13", | ||
"trix": "^1.3.1" | ||
} | ||
} |
Oops, something went wrong.