-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 958 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
{
"name": "learning-cards",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@prisma/client": "^3.7.0",
"antd": "^4.18.2",
"next": "12.1.0",
"next-auth": "4.3.1",
"nextjs-progressbar": "^0.0.14",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.34.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "^14.2.1",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prisma": "^3.6.0",
"react-router-dom": "^6.3.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "4.5.2"
}
}