31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "my-project",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"description": "A Strapi application",
|
|
"scripts": {
|
|
"develop": "strapi develop",
|
|
"start": "if-env EDIT_MODE=true && strapi develop || strapi start",
|
|
"build": "NODE_ENV=production strapi build",
|
|
"strapi": "strapi",
|
|
"postinstall": "node ./bin/postinstall.js"
|
|
},
|
|
"dependencies": {
|
|
"@strapi/plugin-graphql": "4.0.7",
|
|
"@strapi/plugin-i18n": "4.0.7",
|
|
"@strapi/plugin-users-permissions": "4.0.7",
|
|
"@strapi/strapi": "4.0.7",
|
|
"if-env": "^1.0.4",
|
|
"mysql": "^2.18.1",
|
|
"sqlite3": "^5.0.2"
|
|
},
|
|
"author": {
|
|
"name": "A Strapi developer"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.x.x <=16.x.x",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|