-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 3.63 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
{
"name": "frontera",
"version": "0.1.0",
"engines": {
"node": "v16.15.0",
"npm": "8.5.5"
},
"private": true,
"dependencies": {
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"@material-ui/core": "4.12.4",
"@mui/icons-material": "5.8.4",
"@mui/material": "5.8.6",
"@reduxjs/toolkit": "1.8.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"axios": "0.26.1",
"classnames": "2.3.2",
"i18next": "21.6.14",
"i18next-browser-languagedetector": "7.0.1",
"i18next-http-backend": "2.2.0",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-helmet": "6.1.0",
"react-helmet-async": "1.3.0",
"react-i18next": "11.16.2",
"react-redux": "7.2.8",
"react-router-dom": "5.2.0",
"react-scripts": "5.0.0",
"react-toastify": "9.0.8",
"typesafe-actions": "5.1.0",
"typescript-plugin-css-modules": "4.2.3",
"use-query-params": "1.2.3",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-redux": "^7.1.23",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"jest-localstorage-mock": "^2.4.21",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"query-string": "^7.1.0",
"sass": "^1.50.0",
"ts-jest": "^28.0.5",
"typescript": "^4.6.3",
"webpack": "^5.76.3"
},
"scripts": {
"heroku-postbuild": "npm run build",
"start": "react-scripts start",
"start-ci": "serve -s build -l 3000",
"build": "react-scripts build",
"test": " jest --passWithNoTests --config jest.config.js -w=1",
"eject": "react-scripts eject",
"test:integration": "start-server-and-test start-ci http://localhost:3000 cy:run:chrome",
"lint": "npm run lint:styles & npm run lint:scripts",
"lint:fix": "npm run lint:styles:fix & npm run lint:scripts:fix",
"lint:scripts:fix": "eslint --fix \"./src/**/*.{ts,tsx,js}\"",
"lint:styles:fix": "stylelint --fix \"src/**/*.{css,scss}\"",
"lint:scripts": "eslint \"./src/**/*.{ts,tsx,js}\"",
"lint:styles": "stylelint \"src/**/*.{css,scss}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,html,json,css,scss}\"",
"security:dependency:check": "retire --severity=high --verbose --node --nocache --exitwith 1",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}