-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
61
62
63
64
65
{
"name": "api-formenu",
"private": true,
"version": "1.0.0",
"description": "API For ForMenu app",
"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.7.0",
"better-sqlite3": "11.7.2",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"sqlite3": "5.1.7",
"supertest": "7.0.0"
},
"dependencies": {
"@strapi/plugin-documentation": "4.25.19",
"@strapi/plugin-i18n": "4.25.13",
"@strapi/plugin-users-permissions": "4.25.19",
"@strapi/strapi": "4.25.19",
"lodash": "4.17.21",
"pg": "8.13.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"strapi-plugin-populate-deep": "3.0.1",
"strapi-plugin-translate": "1.2.7",
"strapi-provider-translate-deepl": "1.1.15",
"strapi-provider-cloudflare-r2": "0.3.0",
"react-router-dom": "5.3.4",
"styled-components": "5.3.11"
},
"author": {
"name": "Andy Cinquin & Breval LE FLOCH"
},
"strapi": {
"uuid": "02bd7523-b04d-4411-9976-2911345e0280"
},
"engines": {
"node": "20.x"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}