-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "srdt-web",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "react-dsfr update-icons",
"dev": "next dev --turbopack",
"prebuild": "react-dsfr update-icons",
"build": "next build",
"build:standalone": "yarn prebuild && next build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/",
"start": "next start",
"start:standalone": "node .next/standalone/server.js",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.16.10",
"@sentry/nextjs": "^9.28.1",
"@socialgouv/matomo-next": "^1.9.2",
"@types/debounce-promise": "^3.1.9",
"debounce-promise": "^3.1.2",
"downshift": "^9.0.9",
"next": "15.3.3",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"sass": "^1.83.4",
"typescript": "^5"
},
"devEngines": {
"packageManager": {
"name": "yarn",
"onFail": "error"
}
}
}