This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
128 lines (128 loc) · 3.47 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "queen",
"version": "0.10.17",
"description": "Web application for the management of questionnaires powered by Lunatic",
"repository": {
"type": "git",
"url": "https://github.com/InseeFr/Queen.git"
},
"author": "INSEE (http://www.insee.fr)",
"license": "MIT",
"private": true,
"dependencies": {
"@a11y/focus-trap": "^1.0.5",
"@axa-fr/react-oidc-context": "^3.1.6",
"@craco/craco": "^6.4.0",
"@inseefr/lunatic": "0.3.9-experimental",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"dexie": "^2.0.4",
"keycloak-js": "^10.0.2",
"oidc-client": "^1.11.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-keyboard-event-handler": "^1.5.4",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-shadow": "^19.0.2",
"styled-components": "^5.0.1",
"workbox-cacheable-response": "^6.1.1",
"workbox-core": "^6.1.1",
"workbox-expiration": "^6.1.1",
"workbox-precaching": "^6.1.1",
"workbox-routing": "^6.1.1",
"workbox-strategies": "^6.1.1"
},
"scripts": {
"start": "set PORT=5000 && react-scripts start",
"start-dev": "set PORT=5000 && craco start",
"build": "react-scripts build && npm run post-build",
"post-build": "node ./configuration/build/build-sw.js && node ./configuration/build/manage-public-url.js && copy-and-watch configuration/files/* build",
"test": "react-scripts test",
"test:ci": "react-scripts test --watchAll=false --coverage --testResultsProcessor ./node_modules/jest-sonar-reporter",
"eject": "react-scripts eject",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/warnings"
],
"plugins": [
"prettier",
"jsx-a11y"
],
"rules": {
"react/prop-types": [
"off"
],
"prettier/prettier": [
1,
{
"arrowParens": "avoid"
}
]
},
"globals": {
"fetch": true,
"window": true,
"document": true,
"navigator": true
},
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto",
"arrowParens": "avoid"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react": "^16.9.23",
"@types/react-router-dom": "^5.1.3",
"@welldone-software/why-did-you-render": "^6.2.3",
"copy-and-watch": "^0.1.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.2.1",
"workbox-build": "^6.1.1"
}
}