Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
reinvanoyen committed Sep 27, 2021
0 parents commit 29a9641
Show file tree
Hide file tree
Showing 221 changed files with 59,274 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
/node_modules
17 changes: 17 additions & 0 deletions composer.json
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/"
}
}
}
28 changes: 28 additions & 0 deletions config/cmf.php
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',
];
4 changes: 4 additions & 0 deletions mix-manifest.json
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"
}
10,693 changes: 10,693 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions package.json
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"
}
}
Loading

0 comments on commit 29a9641

Please sign in to comment.