forked from InseeFr/Bauhaus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
{
"name": "bauhaus",
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"app"
],
"homepage": "https://interstat.opsi-lab.it/bauhaus/",
"scripts": {
"start": "yarn workspace Bauhaus run start",
"build": "yarn workspaces run build",
"build-insee": "yarn workspaces run build-insee",
"test:coverage": "yarn workspaces run test:coverage --env=jest-environment-jsdom-sixteen",
"build-storybook": "yarn workspaces run build-storybook",
"pre-push": "yarn workspaces run lint && yarn test:coverage",
"generate-entrypoint": "node scripts/generate-entrypoint.js"
},
"resolutions": {
"@inseefr/wilco": "0.0.5"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-knobs": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/react": "5.3.19",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "13.1.9",
"@types/jest": "26.0.16",
"babel-eslint": "^10.1.0",
"babel-jest": "26.0.1",
"babel-loader": "8.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "7.28.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest-dom": "3.2.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.9.2",
"husky": "4.3.0",
"jest": "26.6.0",
"jest-localstorage-mock": "2.4.3",
"lcov-result-merger": "3.1.0",
"prettier": "2.0.5",
"webpack": "5.39.1"
},
"dependencies": {
"dompurify": "2.2.9",
"@babel/preset-react": "^7.12.13",
"jest-environment-jsdom-sixteen": "^1.0.3",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.0",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"rollup": "^2.53.2"
},
"husky": {
"hooks": {
"pre-push": "yarn pre-push"
}
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
}
}