-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.96 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.96 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "crimson-haze",
"version": "0.1.0",
"private": true,
"dependencies": {
"@floating-ui/react": "0.27.19",
"@formkit/auto-animate": "0.9.0",
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "2.9.11",
"@picocss/pico": "1.5.13",
"@previewjs/cli": "1.30.1",
"@reduxjs/toolkit": "1.9.7",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.6.1",
"axios": "1.13.6",
"ci": "2.3.0",
"classnames": "2.5.1",
"dompurify": "3.3.1",
"eslint-plugin-prettier": "4.2.5",
"formik": "2.4.9",
"framer-motion": "10.18.0",
"html2canvas": "1.4.1",
"i18next": "^25.8.14",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.2",
"prettier": "2.8.8",
"react": "18.3.1",
"react-cookie": "4.1.1",
"react-dom": "18.3.1",
"react-draggable": "4.5.0",
"react-fast-compare": "3.2.2",
"react-hook-form": "7.71.2",
"react-hot-toast": "2.6.0",
"react-i18next": "^16.5.6",
"react-icons": "4.12.0",
"react-redux": "8.1.3",
"react-router-dom": "6.30.3",
"react-select": "5.10.2",
"screenfull": "6.0.2",
"typescript": "5.9.3",
"use-sound": "4.0.4",
"web-vitals": "3.5.2",
"yup": "1.7.1"
},
"scripts": {
"main": "index.tsx",
"dev": "vite",
"dev-vm": "vite --host",
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest",
"test:unit": "vitest --coverage ",
"test-coverage": "vitest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"prettier-format": "prettier --config .prettierrc 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --write",
"build-for-beta": "npm run build && rsync -r --stats ./dist/ talishar-beta:/opt/ReactClientRepo/build/",
"generate-cards": "node scripts/card-generator.js && npx prettier --write src/constants/cardList.ts"
},
"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": {
"@testing-library/jest-dom": "5.17.0",
"@types/mocha": "10.0.10",
"@types/node": "18.19.130",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "4.7.0",
"@vitest/coverage-v8": "1.6.1",
"esbuild": "0.27.3",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-react": "7.37.5",
"isomorphic-fetch": "3.0.0",
"jsdom": "21.1.2",
"msw": "1.3.5",
"node-fetch": "3.3.2",
"resize-observer-polyfill": "1.5.1",
"sass": "1.97.3",
"sharp": "0.34.5",
"vite": "5.4.21",
"vite-plugin-svgr": "4.5.0",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.1"
},
"homepage": "."
}