-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "my-project",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"test": "jest --runInBand --coverage=true"
},
"devDependencies": {
"jest": "^27.5.0",
"nodemailer-mock": "^1.5.11",
"supertest": "^6.2.2"
},
"dependencies": {
"@strapi/plugin-i18n": "4.3.6",
"@strapi/plugin-users-permissions": "4.3.6",
"@strapi/provider-email-mocknodemailer": "file:providers/strapi-provider-email-mocknodemailer",
"@strapi/strapi": "4.3.6",
"sqlite3": "5.0.2"
},
"author": {
"name": "Mateusz Wojczal <mateusz@wojczal.com>"
},
"strapi": {
"uuid": "959d5749-f0a6-4487-884f-edd899440417"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"jest": {
"collectCoverageFrom": [
"src/api/**/*.js"
],
"coverageReporters": [
"clover",
"json",
"text"
],
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}