forked from spencerwooo/onedrive-vercel-index
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.62 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": "onedrive-vercel-index",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier 'src/**/*.{js,ts,jsx,tsx}' --write",
"extract": "i18next"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.19",
"@vercel/analytics": "^1.2.2",
"awesome-debounce-promise": "^2.1.0",
"axios": "^1.6.8",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"csstype": "^3.1.3",
"dayjs": "^1.11.11",
"emoji-regex": "^10.3.0",
"envdot": "^0.0.3",
"i18next": "^22.5.1",
"ioredis": "^5.3.2",
"jszip": "^3.10.1",
"mpegts.js": "^1.7.3",
"next": "^13.5.6",
"next-i18next": "^13.3.0",
"nextjs-progressbar": "^0.0.16",
"plyr-react": "^5.3.0",
"preview-office-docs": "^1.0.2",
"react": "^18.2.0",
"react-async-hook": "^4.0.0",
"react-audio-player": "^0.17.0",
"react-cookie": "^4.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-reader": "^1.2.2",
"react-syntax-highlighter": "^15.5.0",
"react-use-system-theme": "^1.1.1",
"rehype-katex": "^6.0.3",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"swr": "^2.2.5",
"use-clipboard-copy": "^0.2.0",
"use-constant": "^1.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/node": "18.19.31",
"@types/react": "18.2.74",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.25",
"@types/react-pdf": "^6.2.0",
"@types/react-syntax-highlighter": "^15.5.11",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^8.10.0",
"i18next-parser": "^7.9.0",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
},
"prettier": {
"printWidth": 120,
"arrowParens": "avoid",
"singleQuote": true,
"semi": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"eslintConfig": {
"extends": [
"next",
"next/core-web-vitals",
"prettier"
]
}
}