-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
94 lines (94 loc) · 3.19 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
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": "annuaire-entreprises-site",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20",
"npm": ">=10"
},
"scripts": {
"prepare": "npx simple-git-hooks",
"start:dev:next": "NODE_ENV=development next dev",
"dev": "run-p start:dev:*",
"build": "NODE_ENV=production BUILD_PHASE=true next build || NODE_ENV=production BUILD_PHASE=true SENTRY_DISABLE_SOURCEMAP_UPLOAD=true next build",
"start": "NODE_ENV=production && next start",
"test:end2end:run:mock": "NEXT_PUBLIC_END2END_MOCKING=enabled run-p dev test:end2end:run",
"test:end2end:open:mock": "NEXT_PUBLIC_END2END_MOCKING=enabled run-p dev test:end2end:open",
"test:end2end:run": "cypress run --config-file ./cypress/cypress.config.ts",
"test:end2end:open": "cypress open --config-file ./cypress/cypress.config.ts",
"test:end2end:update-snapshots": "jest ./cypress/fixtures/recherche-entreprise/generate.test.ts --silent -u",
"test:unit": "jest --runInBand --testPathIgnorePatterns='clients|cypress'",
"test:api-clients": "jest clients --silent",
"test:api-clients:update-snapshots": "jest clients --silent -u",
"lint": "next lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.731.1",
"@react-spring/web": "^9.7.5",
"@sentry/browser": "^8.35.0",
"@sentry/nextjs": "^8.37.1",
"@vcarl/remark-headings": "^0.1.0",
"axios": "^1.6.5",
"canvas": "^2.11.2",
"chart.js": "^4.4.5",
"crawler-user-agents": "^1.0.153",
"cssnano": "^6.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"iron-session": "^8.0.4",
"js-yaml-loader": "~1.2.2",
"maplibre-gl": "^4.7.1",
"matomo-tracker": "~2.2.4",
"next": "^15.1.3",
"next-seo": "^6.6.0",
"openid-client": "^5.7.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-select": "^5.8.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-stringify": "^10.0.1",
"remark-heading-id": "^1.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@fullhuman/postcss-purgecss": "~5.0.0",
"@swc/jest": "^0.2.36",
"@types/cookies": "^0.7.10",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.13",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/remark-heading-id": "^1.0.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.0",
"jest": "^29.7.0",
"jest-file-snapshot": "^0.5.0",
"msw": "^2.6.5",
"npm-run-all": "~4.1.5",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.6.0",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"@swc/core-linux-x64-gnu": "^1.7.36",
"esbuild-linux-64": "^0.15.18",
"tsconfig-paths": "^4.2.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run test:unit"
}
}