Created a simple Strapi project and started filling it

This commit is contained in:
Tiago Ribeiro
2024-03-13 23:11:13 +00:00
commit acef0ddae2
39 changed files with 15922 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "encoach-cms",
"private": true,
"version": "0.1.0",
"description": "The Content Management System for the EnCoach website, developed by eCrop",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi"
},
"devDependencies": {},
"dependencies": {
"@strapi/plugin-cloud": "^4.20.4",
"@strapi/plugin-color-picker": "^4.20.4",
"@strapi/plugin-documentation": "^4.20.5",
"@strapi/plugin-i18n": "^4.20.4",
"@strapi/plugin-users-permissions": "^4.20.4",
"@strapi/strapi": "^4.20.4",
"better-sqlite3": "8.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "5.3.4",
"strapi-plugin-import-export-entries": "^1.23.1",
"styled-components": "5.3.3"
},
"author": {
"name": "eCrop"
},
"strapi": {
"uuid": "5a0eb038-39c9-4d64-8f41-78376e285f85"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}