-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "easy-pastes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./**/*.{ts,tsx,json,md}\""
},
"dependencies": {
"@chakra-ui/react": "^1.7.4",
"@clerk/nextjs": "^3.0.0-alpha.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/fira-code": "^4.5.1",
"@fontsource/poppins": "^4.5.0",
"@supabase/supabase-js": "^1.23.1",
"axios": "^0.25.0",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"date-fns": "^2.24.0",
"date-fns-tz": "^1.1.6",
"emoji-mart": "^3.0.1",
"framer-motion": "^5",
"javascript-time-ago": "^2.3.9",
"nanoid": "^3.2.0",
"next": "^12.1.0",
"next-pwa": "^5.3.1",
"next-seo": "^4.28.1",
"nextjs-progressbar": "^0.0.13",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.25.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.2.0",
"react-simple-code-editor": "^0.11.0",
"react-spinners": "^0.11.0",
"swr": "^1.0.1",
"use-local-storage": "^2.2.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/bad-words": "^3.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/diff": "^5.0.1",
"@types/emoji-mart": "^3.0.9",
"@types/javascript-time-ago": "^2.0.3",
"@types/prismjs": "^1.16.6",
"@types/react": "^17.0.24",
"eslint": "7.32.0",
"eslint-config-next": "^12.1.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}