This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
97 lines (97 loc) · 2.82 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
95
96
97
{
"name": "work-in-france",
"description": "La plateforme de demande d'autorisation provisoires de travail.",
"version": "3.13.7",
"author": "Incubateur des Ministères Sociaux <dsi-incubateur@sg.social.gouv.fr> (https://incubateur.social.gouv.fr)",
"bugs": "https://github.com/SocialGouv/work-in-france/issues",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": "^[A-Z]+-[0-9]+ - .*",
"subjectPatternErrorMsg": "Subject must be in format 'CMS-123 - Commit message'",
"helpMessage": ""
}
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@socialgouv/react-departements": "^3.0.0",
"@zeit/next-mdx": "^1.2.0",
"axios": "^0.21.1",
"date-fns": "^2.16.1",
"formik": "^2.2.9",
"memoizee": "^0.4.15",
"next": "^10.2.3",
"next-redux-wrapper": "^6.0.2",
"normalize.css": "^8.0.1",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"react-query": "^2.22.2",
"react-redux": "^7.2.4",
"react-select": "^3.2.0",
"rebass": "3.1.3",
"recharts": "^2.1.2",
"redux": "^4.1.1",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.1",
"url-search-params-polyfill": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.13.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"flow-bin": "^0.133.0",
"flow-typed": "^2.6.2",
"husky": "^4.3.8",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "Apache-2.0",
"main": "index.js",
"private": true,
"repository": "SocialGouv/work-in-france",
"scripts": {
"build": "next build",
"commitmsg": "validate-commit-msg",
"deploy": "npm run build && npm run export",
"dev": "next",
"export": "next export",
"k8s": "yarn --silent --cwd .k8s",
"lint": "eslint --ext .jsx,.js ./pages ./components ./lib ./utils ./theme",
"start": "next start",
"test": "exit 0 "
}
}