-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"private": true,
"scripts": {
"dev": "next",
"generate": "graphql-codegen",
"build": "next build",
"start": "next start",
"test": "jest",
"gen:types": "graphql-codegen --config codegen.yml"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^@/(.*)": "<rootDir>/$1"
}
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@graphql-tools/schema": "^8.3.6",
"@mui/material": "^5.4.2",
"@mui/styled-engine-sc": "^5.4.2",
"@testing-library/dom": "^8.14.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.2",
"@types/react-redux": "^7.1.23",
"apollo-server-micro": "^2.14.2",
"dotenv": "^16.0.0",
"graphql": "^14.0.2",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.6.4",
"immer": "^9.0.12",
"jest": "^28.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"mongodb": "^4.4.0",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"shortid": "^2.2.16",
"styled-components": "^5.3.3",
"use-immer": "^0.6.0",
"web3": "^1.7.1",
"ws": "^8.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-operations": "4.0.0",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@testing-library/user-event": "^14.2.1",
"jest-environment-jsdom": "^28.1.2",
"typescript": "^4.6.2"
}
}