-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.36 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
{
"name": "layers-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"dependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.10.15",
"@mui/material": "^5.10.15",
"@primer/css": "^20.6.0",
"@primer/stylelint-config": "^12.7.0",
"@reduxjs/toolkit": "^1.9.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"axios": "^1.1.3",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-redux": "^4.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unicorn": "^44.0.2",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"lodash": "^4.17.21",
"postcss": "^8.4.19",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"react-scripts": "^5.0.1",
"recharts": "^2.1.16",
"sanitize.css": "^13.0.0",
"source-map-explorer": "^2.5.3",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
"typescript": "^4.9.3",
"uuid": "^9.0.0",
"web-vitals": "^3.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"coverage": "yarn test -- --coverage",
"lint": "npx eslint 'src/**/*.{js,ts,jsx,tsx}'",
"lint:fix": "yarn lint -- --fix",
"stylelint": "npx stylelint 'src/**/*.{css,jsx,tsx}'",
"stylelint:fix": "yarn stylelint -- --fix",
"server:js": "json-server --watch server/db.js --port 3050 --delay 1000",
"server:json": "json-server --watch server/db.json --port 3050 --delay 1000"
},
"eslintConfig": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}