-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.7.7",
"@auth0/auth0-react": "^2.0.0",
"@auth0/nextjs-auth0": "^1.9.2",
"@cobuildlab/error-handling": "^0.0.3",
"@cobuildlab/react-simple-state": "^0.7.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.119",
"@mui/material": "^5.11.8",
"@mui/system": "^5.11.8",
"@testing-library/jest-dom": "^5.16.5",
"graphql": "^16.6.0",
"next": "^13.1.6",
"next-http-proxy-middleware": "^1.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.8.1",
"subscriptions-transport-ws": "^0.11.0",
"web-vitals": "^3.1.1"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/react": "18.0.21",
"@types/react-dom": "^18.0.10",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}