-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.81 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "shufflegenie",
"version": "1.3.1",
"homepage": "https://cyggnus.github.io/ShuffleGenie",
"repository": {
"type": "git",
"url": "git+https://github.com/Cyggnus/ShuffleGenie.git"
},
"author": "lkotlarenko, LeonardoKleimpaul",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cyggnus/ShuffleGenie/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "vite --host",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix src/**/*.{js,jsx,ts,tsx,json}",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json,scss} --config ./.prettierrc"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@material-tailwind/react": "2.0.5",
"@vitejs/plugin-react-swc": "^3.3.2",
"base-64": "^1.0.0",
"i18next": "^23.4.1",
"i18next-browser-languagedetector": "^7.1.0",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.3",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.8.1",
"sass": "^1.63.6",
"sweetalert2": "^11.6.13",
"sweetalert2-react-content": "^5.0.7",
"vite": "^4.4.7",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0",
"web-vitals": "^2.1.4"
},
"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": {
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/base-64": "^1.0.0",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.33.0",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7"
}
}