forked from betagouv/api.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.25 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
{
"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",
"scripts": {
"sitemap": "node nodeScripts/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",
"check-accessibility": "node ./nodeScripts/checkA11y.js",
"check-broken-links": "node ./nodeScripts/checkBrokenLinks.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && node nodeScripts/createThumbnail.js",
"pre-push": "npm run test && node nodeScripts/createThumbnail.js"
}
},
"devDependencies": {
"@babel/preset-typescript": "^7.9.0",
"@types/cors": "^2.8.6",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/markdown-to-jsx": "^6.11.1",
"@types/react": "^16.9.34",
"@types/swagger-ui-dist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@zeit/next-sass": "^1.0.1",
"axe-cli": "^3.2.0",
"babel-eslint": "^10.1.0",
"broken-link-checker": "^0.7.8",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"jest": "^25.4.0",
"linkinator": "^2.1.1",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"sass": "^1.26.3",
"sharp": "^0.26.0",
"sitemap": "^6.1.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"@types/d3": "^5.16.3",
"@types/d3-scale": "^3.2.0",
"cors": "^2.8.5",
"d3": "^6.2.0",
"front-matter": "^3.0.2",
"lodash": "^4.17.19",
"markdown-to-jsx": "^6.11.4",
"next": "^9.5.3",
"next-seo": "^4.4.0",
"nextjs-fonts": "^0.22.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"swagger-ui-dist": "^3.31.1",
"underscore.string": "^3.3.5"
}
}