forked from SocialGouv/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "@betagouv/template-nextjs",
"version": "1.15.8",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18 || >=20"
},
"scripts": {
"predev": "only-include-used-icons",
"prebuild": "node -r @swc-node/register scripts/prebuild.ts && yarn only-include-used-icons",
"only-include-used-icons": "node node_modules/@codegouvfr/react-dsfr/bin/only-include-used-icons.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"e2e": "NEXT_PUBLIC_BASE_PATH='' NODE_ENV=production yarn build && yarn playwright test",
"test": "vitest",
"test:watch": "vitest --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.16.7",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@mui/x-data-grid": "^5.17.26",
"@mui/x-date-pickers": "^5.0.20",
"@next/mdx": "^14.2.24",
"@sentry/nextjs": "^7.120.2",
"@socialgouv/matomo-next": "^1.9.2",
"dayjs": "^1.11.13",
"is-ci": "^3.0.1",
"next": "14.2.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-gfm": "^4.0.1",
"tss-react": "^4.9.15"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@playwright/test": "^1.51.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.11.8",
"@testing-library/react": "^14.3.1",
"@types/mdx": "^2.0.13",
"@types/node": "18.19.70",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "8.57.1",
"eslint-config-next": "14.2.23",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"jsdom": "24.1.3",
"lint-staged": "15.3.0",
"node-talisman": "^1.29.12",
"start-server-and-test": "2.0.9",
"typescript": "5.4.3",
"vitest": "1.6.0"
}
}