forked from For-Hives/api-my-makeup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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": "api.my-makeup.fr",
"private": true,
"version": "1.0.0",
"description": "api.my-makeup.fr",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"test": "jest --forceExit --detectOpenHandles --no-cache",
"prettier": "prettier --write .",
"precommit": "lint-staged",
"husky": "husky install"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@jest/globals": "29.6.2",
"better-sqlite3": "8.5.0",
"husky": "^8.0.3",
"jest": "29.6.2",
"lint-staged": "13.2.3",
"sqlite3": "5.1.6",
"supertest": "6.3.3"
},
"dependencies": {
"@strapi/plugin-documentation": "4.12.0",
"@strapi/plugin-i18n": "4.12.0",
"@strapi/plugin-users-permissions": "4.12.0",
"@strapi/strapi": "4.12.0",
"fuse": "0.4.0",
"fuse.js": "6.6.2",
"lodash": "^4.17.21",
"minio-for-strapi-v4": "1.0.7"
},
"author": {
"name": "ForHive"
},
"strapi": {
"uuid": "c0d864b1-1b09-4b5b-b4b4-416ea404ac56"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}