-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "next lint --fix"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@next-auth/prisma-adapter": "^0.5.4",
"@prisma/client": "2.28.0",
"axios": "^0.21.1",
"next": "11.0.1",
"next-auth": "^3.27.3",
"next-pwa": "^5.3.1",
"nextjs-cors": "^2.0.0",
"prisma": "2.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-search-autocomplete": "^5.4.2",
"swr": "^0.5.6"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"autoprefixer": "^10.3.1",
"eslint": "^7.31.0",
"eslint-config-next": "11.0.1",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
}
}