forked from betagouv/api.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
{
"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": "=12.16",
"scripts": {
"sitemap": "node node-scripts/saveUrlList.js && sitemap < ./public/url-list.txt > ./public/sitemap.xml",
"dev": "NODE_ENV=development next",
"test": "jest",
"start": "next start -p $PORT",
"build": "NODE_ENV=production npm run sitemap && next build",
"lint": "eslint '**/*.{ts,tsx}' --max-warnings 20",
"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.2.1",
"@babel/eslint-parser": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/cors": "^2.8.10",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.10",
"@types/swagger-ui-dist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@zeit/next-sass": "^1.0.0",
"babel-eslint": "^10.1.0",
"broken-link-checker": "^0.7.8",
"eslint": "^7.28.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"sass": "^1.34.1",
"sharp": "^0.28.3",
"sitemap": "^7.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@types/d3": "^6.7.0",
"@types/d3-scale": "^3.3.0",
"cors": "^2.8.5",
"d3": "^6.6.1",
"raw-loader": "^4.0.2",
"front-matter": "^4.0.2",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.1.3",
"next": "^10.2.3",
"next-seo": "^4.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swagger-ui-dist": "^3.50.0",
"underscore.string": "^3.3.5"
}
}