-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "edu-backend",
"private": true,
"version": "0.1.1",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"test": "jest --forceExit --detectOpenHandles",
"db:start": "docker compose -f docker-compose-dev.yml up -d",
"db:stop": "docker compose -f docker-compose-dev.yml down",
"db:logs": "docker compose -f docker-compose-dev.yml logs -f"
},
"devDependencies": {
"jest": "^26.6.3",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3"
},
"dependencies": {
"algoliasearch": "^4.3.0",
"axios": "^0.19.2",
"knex": "0.21.1",
"pg": "latest",
"pg-connection-string": "^2.4.0",
"strapi": "3.0.0",
"strapi-admin": "3.0.0",
"strapi-connector-bookshelf": "3.0.0",
"strapi-plugin-content-manager": "3.0.0",
"strapi-plugin-content-type-builder": "3.0.0",
"strapi-plugin-email": "3.0.0",
"strapi-plugin-upload": "3.0.0",
"strapi-plugin-users-permissions": "3.0.0",
"strapi-provider-upload-aws-s3": "^3.1.3",
"strapi-utils": "3.0.0"
},
"author": {
"name": "nyala.dev"
},
"strapi": {
"uuid": "bb3598d4-69d3-4bc9-a340-db30d747dbe4"
},
"engines": {
"node": ">=10.0.0 <15",
"npm": ">=6.0.0"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"globals": {
"strapi": true
},
"testEnvironment": "node"
}
}