-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 loc) · 937 Bytes
/
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
{
"name": "strapi-plugin-stellate",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"test": "jest --forceExit --detectOpenHandles"
},
"devDependencies": {
"jest": "^29.5.0",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3"
},
"dependencies": {
"@strapi/plugin-i18n": "4.8.2",
"@strapi/plugin-users-permissions": "4.8.2",
"@strapi/strapi": "4.8.2",
"better-sqlite3": "8.0.1"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "8709b874-313a-4117-9de3-7a111ff91edc"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
},
"license": "MIT"
}