-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.7 KB
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
{
"name": "flearn-frontend",
"version": "0.1.0",
"private": true,
"description": "Flearn frontend",
"keywords": [
"frontend",
"Flearn"
],
"author": {
"name": "Flearn Team",
"email": "vfyodorov@nes.ru"
},
"scripts": {
"start": "react-scripts start",
"start:edit": "env REACT_APP_DATA_MODE=EDIT react-scripts start",
"build": "react-scripts build",
"deploy": "npm run build && firebase deploy",
"lint": "tslint --project tsconfig.json",
"tsc": "tsc",
"check": "npm run lint && npm run tsc",
"pull:fb": "firebase ext:export",
"mb": "ngrok http 3000"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"classnames": "^2.3.2",
"firebase": "^10.1.0",
"gsap": "^3.12.2",
"i18next": "^23.7.11",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.11.0",
"react-router-dom": "^6.11.0",
"react-scripts": "5.0.1",
"react-svg-spinners": "^0.3.1",
"rxjs": "^7.8.1",
"sass": "^1.62.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.2",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^5.5.3"
},
"overrides": {
"typescript": "^5.5.3"
},
"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"
]
}
}