-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "nextjs-sandbox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.0",
"@fortawesome/free-solid-svg-icons": "^6.7.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@socialgouv/matomo-next": "^1.9.2",
"datatables.net": "^2.1.8",
"datatables.net-dt": "^2.1.8",
"datatables.net-react": "^1.0.0",
"dayjs": "^1.11.13",
"marked": "^15.0.4",
"next": "^15.1.2",
"react": "^18",
"react-dom": "^18",
"react-player": "^2.16.0",
"sass-loader": "^16.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.1.2",
"@types/jest": "29.5.11",
"@types/react": "18.2.45",
"axios": "^1.7.9",
"eslint": "^8",
"eslint-config-next": "^15.0.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock": "^29.7.0",
"lint-staged": "^15.2.11",
"postcss": "^8",
"sass": "^1.81.0",
"tailwindcss": "^3.4.15"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}