-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "demios-api",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"checks": "node checks",
"test": "NODE_ENV=development jest --forceExit --detectOpenHandles"
},
"devDependencies": {
"jest": "^29.3.1",
"sqlite3": "^5.1.2",
"supertest": "^6.3.1"
},
"dependencies": {
"@strapi-community/strapi-provider-upload-google-cloud-storage": "^4.3.6",
"@strapi/plugin-i18n": "4.5.2",
"@strapi/plugin-users-permissions": "4.5.2",
"@strapi/provider-email-mailgun": "^4.5.2",
"@strapi/strapi": "4.5.2",
"better-sqlite3": "7.4.6",
"mongodb": "^4.12.1",
"strapi-plugin-passwordless": "^4.0.8",
"strapi-provider-email-console": "file:./providers/strapi-provider-email-console"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "1324b76f-f561-4118-af48-e0b2244e0135"
},
"engines": {
"node": ">=16 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}