Skip to content

Commit

Permalink
Allow node 14 and 16
Browse files Browse the repository at this point in the history
  • Loading branch information
paularintaharri committed Apr 19, 2024
1 parent b500d42 commit 32d98a4
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{
"name": "pof-backend-v2",
"private": true,
"version": "0.1.0",
"private": true,
"description": "A Strapi application",
"license": "MIT",
"author": {
"name": "A Strapi developer"
},
"scripts": {
"build": "strapi build",
"develop": "strapi develop",
"gcp-build": "strapi build",
"postinstall": "patch-package",
"start": "node ./server.js",
"build": "strapi build",
"strapi": "strapi",
"gcp-build": "strapi build",
"test": "jest --forceExit --detectOpenHandles",
"postinstall": "patch-package"
"test": "jest --forceExit --detectOpenHandles"
},
"devDependencies": {
"algoliasearch": "4.10.4",
"axios-rate-limit": "1.3.0",
"form-data": "4.0.0",
"jest": "26.6.3",
"needle": "2.6.0",
"patch-package": "6.4.7",
"postinstall-postinstall": "2.1.0",
"supertest": "6.1.3",
"yargs": "17.0.1"
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testTimeout": 60000
},
"dependencies": {
"@tinymce/tinymce-react": "3.12.6",
Expand Down Expand Up @@ -50,24 +52,22 @@
"strapi-provider-upload-azure-storage": "1.1.3",
"strapi-utils": "3.6.11"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "f874c59e-fcd5-4d24-86ae-b255ad184ceb"
"devDependencies": {
"algoliasearch": "4.10.4",
"axios-rate-limit": "1.3.0",
"form-data": "4.0.0",
"jest": "26.6.3",
"needle": "2.6.0",
"patch-package": "6.4.7",
"postinstall-postinstall": "2.1.0",
"supertest": "6.1.3",
"yargs": "17.0.1"
},
"engines": {
"node": "16.x.x",
"node": "14.x.x || 16.x.x",
"npm": "^6.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node",
"testTimeout": 60000
},
"license": "MIT"
"strapi": {
"uuid": "f874c59e-fcd5-4d24-86ae-b255ad184ceb"
}
}

0 comments on commit 32d98a4

Please sign in to comment.