-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "bookings-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-backend": "json-server --watch backend.json --port 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"apollo-datasource": "^3.1.0",
"apollo-datasource-rest": "^3.2.0",
"apollo-server-core": "^3.11.0",
"apollo-server-micro": "^3.3.0",
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5",
"luxon": "^2.0.2",
"micro": "^9.3.4",
"next": "12.1.0",
"nexus": "^1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "^3.1.3",
"react-hook-form": "^7.14.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@testing-library/dom": "^8.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/luxon": "^2.0.4",
"@types/node": "^16.7.5",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"jest": "^27.2.1",
"json-server": "^0.17.1",
"typescript": "4.4.2"
}
}