-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1021 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": "web-candidate-assignment",
"version": "0.1.0",
"private": true,
"scripts": {
"mocks": "mkdir -p ./public && npx msw init ./public",
"predev": "npm run mocks",
"dev": "next dev",
"prebuild": "npm run mocks",
"build": "next build",
"prestart": "npm run mocks",
"start": "next start",
"export": "next export",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.1.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"graphql": "^15.3.0",
"next": "9.5.2",
"node-fetch": "^2.6.0",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"jest": "^26.4.0",
"localforage": "^1.9.0",
"msw": "^0.20.5",
"react-test-renderer": "^16.13.1"
}
}