-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.04 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
75
76
77
78
79
80
81
{
"name": "question-tracker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@smastrom/react-rating": "^1.3.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"chart.js": "^4.2.0",
"dotenv": "^16.0.3",
"firebase": "^9.22.1",
"firebase-tools": "^12.2.1",
"formik": "^2.4.2",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-firebase-hooks": "^5.1.1",
"react-i18next": "^12.2.0",
"react-icons": "^4.9.0",
"react-router": "^6.6.2",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"styled-components": "^6.0.0-rc.1",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Android-Battalion/Question-Tracker.git"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write src",
"sync:i18": "ts-node --project scripts/tsconfig.json scripts/syncTranslations.ts",
"i18": "npm run sync:i18",
"lint": "eslint src"
},
"keywords": [
"question tracker",
"question",
"tracker"
],
"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": {
"@faker-js/faker": "^8.0.2",
"@types/lodash": "^4.14.191",
"cross-env": "^7.0.3",
"prettier": "^2.8.4",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1"
}
}