-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
43
44
45
46
{
"name": "phonebook-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.8.4",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"eslint": "8.49.0",
"eslint-config-next": "13.5.2",
"formik": "^2.4.5",
"graphql": "^15.8.0",
"isomorphic-unfetch": "^4.0.2",
"next": "13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"sweetalert2": "^11.7.28",
"typescript": "5.2.2",
"yup": "^1.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-flow": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}