-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.92 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
{
"name": "test",
"version": "0.1.1",
"private": true,
"author": "SeyyedMahdi Hassanpour <SeyyedKhandon@gmail.com>",
"homepage": ".",
"scripts": {
"start": "craco start",
"start:disable-logger": "set REACT_APP_DISABLE_LOGGER=true && craco start",
"build": "yarn validate && craco build",
"build:disable-logger": "set REACT_APP_DISABLE_LOGGER=true && yarn build",
"build:mocked": "set REACT_APP_MOCKED=true && yarn build",
"test": "set REACT_APP_DISABLE_LOGGER=true && craco test",
"test:debug": "craco --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore \"./src/**/*.+(js|jsx|json|ts|tsx)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"validate": "npm-run-all --parallel check-types check-format lint",
"analyze": "yarn build && source-map-explorer 'build/static/js/*.js'",
"analyze-colorful": "yarn build --bundle-analyze",
"prepare": "husky install",
"pre-commit-lint": "yarn check-types && yarn lint-staged",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@reduxjs/toolkit": "^1.5.1",
"@sentry/react": "^6.4.0",
"@sentry/tracing": "^6.4.0",
"axios": "^0.21.1",
"i18next": "^20.2.2",
"i18next-browser-languagedetector": "^6.1.0",
"jss-rtl": "^0.3.0",
"jwt-decode": "^3.1.2",
"normalize.css": "^8.0.1",
"notistack": "^1.0.9",
"pkce-challenge": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.15",
"react-query": "^3.15.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@craco/craco": "^6.1.2",
"@mswjs/data": "^0.3.0",
"@sentry/webpack-plugin": "^1.15.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^9.0.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest-dom": "^3.8.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-testing-library": "^4.1.0",
"eslint-plugin-unused-imports": "^1.1.1",
"http-proxy-middleware": "^1.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"msw": "^0.28.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"source-map-explorer": "^2.5.2",
"storybook-preset-craco": "^0.0.4",
"typescript": "^4.2.4",
"typescript-styled-plugin": "^0.18.0",
"web-vitals": "^0.2.4",
"webpack-bundle-analyzer": "^4.4.1"
},
"msw": {
"workerDirectory": "public"
}
}