-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.12 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "helpcenter",
"description": "Multi-tenant documentation help center, served by Next.js with the DSFR design system, with content from a Docs CMS.",
"version": "0.1.0",
"private": true,
"author": "ANCT",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/suitenumerique/helpcenter.git"
},
"homepage": "https://github.com/suitenumerique/helpcenter#readme",
"bugs": {
"url": "https://github.com/suitenumerique/helpcenter/issues"
},
"engines": {
"node": "22"
},
"scripts": {
"predev": "rm -rf .next && npm run only-include-used-icons",
"prebuild": "rm -rf .next && npm run only-include-used-icons",
"only-include-used-icons": "node node_modules/@codegouvfr/react-dsfr/bin/only-include-used-icons.js",
"dev": "next dev --port 8990",
"build": "next build",
"scalingo-postbuild": "npm run build && ./scripts/scalingo_postfrontend && ./scripts/scalingo_postcompile",
"start": "next start --port 8990",
"prepare": "husky",
"lint": "prettier --write '**/*.{ts,tsx,css,md,mdx,mjs,js}' --print-width 100 && next lint --no-cache && npm run lint:types",
"lint:check": "prettier '**/*.{ts,tsx,css,md,mdx,mjs,js}' --list-different --print-width 100 && next lint --no-cache && npm run lint:types",
"lint:types": "tsc --noEmit",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:watch": "vitest watch",
"reindex": "tsx scripts/reindex.ts"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"dependencies": {
"@codegouvfr/react-dsfr": "1.26.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.1",
"@sentry/nextjs": "^10.3.0",
"@socialgouv/matomo-next": "^1.13.1",
"husky": "^9.1.7",
"ioredis": "^5.10.1",
"is-ci": "^4.1.0",
"next": "15.5.16",
"next-seo": "^6.8.0",
"pagefind": "^1.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rehype-parse": "^9.0.1",
"rehype-react": "^8.0.0",
"sharp": "^0.34.3",
"tss-react": "^4.9.19",
"tsx": "^4.21.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@swc/core": "^1.13.3",
"@swc/helpers": "^0.5.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "24.2.0",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.0",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "9.32.0",
"eslint-config-next": "15.4.6",
"eslint-plugin-jsx-a11y": "6.10.2",
"jsdom": "^26.1.0",
"prettier-plugin-organize-imports": "^4.2.0",
"typescript": "5.9.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@img/sharp-linux-arm64": "0.34.3",
"@img/sharp-linux-x64": "0.34.3",
"@img/sharp-linuxmusl-x64": "0.34.3",
"@rollup/rollup-linux-x64-gnu": "4.46.2",
"@rollup/rollup-linux-x64-musl": "4.46.2",
"@swc/core-linux-arm64-gnu": "1.13.5",
"@swc/core-linux-x64-gnu": "1.13.5",
"@swc/core-linux-x64-musl": "1.13.5"
}
}