-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.15 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
{
"name": "planner",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@date-io/date-fns": "^2.16.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.14.11",
"@mui/x-date-pickers-pro": "^6.9.1",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/browser": "^7.75.1",
"@sentry/react": "^7.74.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.200",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-table": "^7.7.14",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"concurrently": "^8.2.2",
"date-fns": "^2.30.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase": "^10.0.0",
"formik": "^2.4.2",
"lodash": "^4.17.21",
"node-telegram-bot-api": "^0.63.0",
"numeral": "^2.0.6",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.3.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.14.1",
"react-scripts": "5.0.1",
"react-table": "^7.8.0",
"redux-persist": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"use-react-router-breadcrumbs": "^4.0.1",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"scripts": {
"start": "concurrently \"npm run start-local\" \"npm run telegram\"",
"start-local": "react-scripts start",
"start-node": "node telegram/index.js",
"telegram": "nodemon telegram/index.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src",
"lint-fix": "eslint src --quiet --fix",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org nurtimax --project javascript-react-l0 ./out && sentry-cli sourcemaps upload --org nurtimax --project javascript-react-l0 ./out",
"release": "(export REACT_APP_SENTRY_RELEASE=$(git rev-parse --short HEAD); react-scripts build && node scripts/sentry.cjs)"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@sentry/cli": "^2.21.2",
"@types/node": "^20.4.2",
"@types/node-telegram-bot-api": "^0.61.8",
"@types/numeral": "^2.0.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.1"
}
}