-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
{
"name": "movie-shop",
"version": "1.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.8.0",
"@paypal/react-paypal-js": "^7.8.1",
"@stripe/react-stripe-js": "^1.7.2",
"@stripe/stripe-js": "^1.29.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.174",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"axios": "^0.21.4",
"bootstrap": "^5.1.3",
"chart.js": "^3.5.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"export-to-csv": "^0.2.1",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
"lodash": "^4.17.21",
"notistack": "^2.0.3",
"react": "^17.0.2",
"react-bootstrap": "^2.4.0",
"react-bootstrap-icons": "^1.8.4",
"react-chartjs-2": "^3.0.5",
"react-dom": "^17.0.2",
"react-loading-skeleton": "^3.1.0",
"react-router": "^6.3.0",
"react-router-bootstrap": "^0.26.1",
"react-router-dom": "^6.3.0",
"react-test-renderer": "^17.0.2",
"simpler-state": "^1.1.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --fix ./src/**/*",
"deploy": "firebase deploy --only hosting",
"prepare": "husky install",
"check-types": "tsc --noEmit"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-router-bootstrap": "^0.24.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@vitejs/plugin-react": "^1.2.0",
"cypress": "^8.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"prettier-eslint": "^8.2.2",
"sass": "^1.49.9",
"typescript": "^4.4.3",
"vite": "^2.8.6"
}
}