-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 987 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 987 Bytes
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
{
"name": "plan-it",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watchAll --silent=false --runInBand --coverage",
"lint": "next lint",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\""
},
"dependencies": {
"@auth0/nextjs-auth0": "2.0.1",
"axios": "^1.2.2",
"mongodb": "3.5.9",
"mongoose": "^6.8.0",
"next": "13.0.6",
"next-swagger-doc": "^0.3.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.1",
"swagger-ui-react": "^4.15.5"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.11.12",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-html-reporter": "^3.7.0",
"node-mocks-http": "^1.12.1",
"prettier": "^2.8.1",
"typescript": "4.9.4"
}
}