-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.3 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
{
"name": "swingessentialsweb",
"homepage": "https://www.swingessentials.com",
"version": "4.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint \"./**/**.{ts,tsx}\"",
"lint:fix": "eslint \"./**/**.{ts,tsx}\" --fix",
"prettier": "prettier \"./**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"./**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"ga:prod": "cp -r ./src/__analytics__/prod.js ./src/__analytics__/ga.js",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/open-sans": "^5.1.1",
"@fontsource/roboto-mono": "^5.1.1",
"@mui/icons-material": "^7.0.0",
"@mui/material": "^7.0.0",
"@mui/x-date-pickers": "^7.0.0",
"@paypal/react-paypal-js": "^8.8.2",
"@reduxjs/toolkit": "^2.6.0",
"@use-gesture/react": "^10.3.1",
"date-fns": "^4.0.0",
"lodash.debounce": "^4.0.8",
"react": "^19.0.0",
"react-avatar-editor": "^13.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.2.0",
"react-youtube": "^10.1.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"vite-plugin-svgr": "^4.3.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.0.8",
"@types/react-avatar-editor": "^13.0.4",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"ftp": "^0.3.10",
"glob": "^11.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0"
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"arrowParens": "always"
}
}