-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "batid-ads",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"e2e": "npx playwright test",
"e2e-ui": "npx playwright test --ui",
"predev": "react-dsfr update-icons",
"prebuild": "react-dsfr update-icons",
"prepare": "husky"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.11.2",
"@reduxjs/toolkit": "^2.2.7",
"@sentry/nextjs": "^8.47.0",
"@tryghost/content-api": "^1.11.21",
"@turf/turf": "^7.1.0",
"@types/node": "22.2.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vercel/analytics": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"events": "^3.3.0",
"highlight.js": "^11.10.0",
"js-cookie": "^3.0.5",
"lodash.debounce": "^4.0.8",
"maplibre-gl": "^4.5.2",
"next": "14.2.5",
"next-auth": "^4.24.7",
"react": "18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.3.1",
"react-fuzzy-highlighter": "^1.1.1",
"react-redux": "^9.1.2",
"react-select": "^5.8.0",
"typescript": "5.5.4",
"yaml": "^2.5.0"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"sass": "^1.77.8"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}