-
Notifications
You must be signed in to change notification settings - Fork 827
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "strapi-test",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"lint": "eslint .",
"build": "strapi build",
"strapi": "strapi",
"test": "JWT_SECRET=secret jest --forceExit --detectOpenHandles"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"jest": "^28.1.3",
"sqlite3": "^5.0.10",
"supertest": "^6.2.4"
},
"dependencies": {
"@strapi/plugin-i18n": "4.2.3",
"@strapi/plugin-users-permissions": "4.2.3",
"@strapi/strapi": "4.2.3"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "6e511c67-062b-40f9-afe5-a1511ab9ebbd"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}