-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "api.gouv.fr",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:betagouv/api.gouv.fr.git",
"license": "AGPL-3.0-or-later",
"node": ">=16",
"scripts": {
"sitemap": "node node-scripts/saveUrlList.js && node ./node_modules/sitemap/dist/cli.js < ./public/url-list.txt > ./public/sitemap.xml",
"dev": "NODE_ENV=development next",
"test": "jest",
"start": "next start -p $PORT",
"thumbnail": "node node-scripts/createThumbnail.js",
"build": "NODE_ENV=production npm run sitemap && next build",
"lint": "next lint",
"create-thumbnail": "node node-scripts/createThumbnail.js",
"check-accessibility": "node ./node-scripts/checkA11y.js",
"check-broken-links": "node ./node-scripts/checkBrokenLinks.js",
"check-no-datapass-staging": "node ./node-scripts/checkNoDatapassStaging.js"
},
"devDependencies": {
"@axe-core/cli": "^4.7.3",
"jest": "^29.6.1",
"pre-commit": "^1.2.2",
"prettier": "^3.0.0"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/d3": "^7.4.0",
"@types/d3-scale": "^4.0.3",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.15",
"@types/swagger-ui-dist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"broken-link-checker": "^0.7.8",
"cors": "^2.8.5",
"d3": "^7.8.5",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.11",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.2.1",
"next": "^13.5.6",
"next-seo": "^6.1.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.64.0",
"sharp": "^0.32.6",
"sitemap": "^7.0.0",
"swagger-ui-dist": "^5.1.3",
"typescript": "^5.1.6",
"underscore.string": "^3.3.5"
}
}