-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 990 Bytes
/
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
{
"name": "chess-opening-book",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/EpictetusZ1/chess-opening-book.git"
},
"author": "EpictetusZ1",
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.5.0",
"axios": "^1.1.3",
"mongodb": "^4.11.0",
"next": "^12.3.1",
"next-auth": "^4.14.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"eslint": "^8.26.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"prisma": "^4.5.0",
"typescript": "4.8.4"
}
}