-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.44 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
117
118
{
"name": "portato",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/i18n": "^0.13.6",
"@types/jest": "^27.5.2",
"@types/moment": "^2.13.0",
"@types/node": "^17.0.45",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"antd": "^5.4.0",
"antd-mobile": "^5.29.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"cors-anywhere": "^0.4.4",
"crisp-sdk-web": "^1.0.19",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.23.0",
"firebase-functions": "^4.3.0",
"firebaseui": "^6.0.2",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.2",
"mapbox-gl": "^2.15.0",
"moment": "^2.29.4",
"rc-upload": "^4.3.4",
"react": "^18.2.0",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"react-hotjar": "^6.1.0",
"react-i18next": "^12.3.1",
"react-redux": "^8.0.5",
"react-router": "^6.8.2",
"react-router-dom": "^6.8.2",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.11",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"scripts": {
"print-log": "env-cmd -f -f .env.production node test_env_var.js",
"start": "cp .firebaserc_dev .firebaserc && CI=false REACT_APP_COMMIT_HASH=$(git rev-parse HEAD) env-cmd -f .env.development react-scripts start",
"build": "CI=false REACT_APP_COMMIT_HASH=$(git rev-parse HEAD) env-cmd -f .env.production react-scripts build",
"test": "REACT_APP_COMMIT_HASH=$(git rev-parse HEAD) react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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",
"@types/mapbox-gl": "^2.7.11",
"@types/react-redux": "^7.1.25",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.1.26",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"git-revision-webpack-plugin": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lottie-web": "^5.12.2",
"pret": "^0.0.2",
"prettier": "^2.8.8"
},
"lint-staged": {
"**/*{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}