-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "magic",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "Colby Thomas",
"email": "colby@devdead.ly",
"url": "https://devdead.ly"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"test": "echo \"No tests specified\""
},
"lint-staged": {
"*.{js,jsx}": [
"eslint '*/**/*.{ts,tsx,js,jsx}' --fix"
]
},
"dependencies": {
"@fontsource/inter": "^4.5.1",
"@fontsource/rubik": "^4.5.0",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@prisma/client": "^3.7.0",
"@sendgrid/mail": "^7.6.0",
"@tailwindcss/line-clamp": "^0.3.0",
"axios": "^0.24.0",
"cookie": "^0.4.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"nanoid": "^3.1.30",
"next": "12.0.7",
"next-cookie": "^2.8.0",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "17.0.2",
"@types/react": "17.0.37",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.1",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"tailwindcss": "^3.0.8",
"typescript": "4.5.4"
}
}