-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "nextjs-hasura-basic-lesson",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --env=jsdom --verbose",
"gen-types": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@apollo/react-hooks": "^4.0.0",
"@heroicons/react": "^1.0.1",
"autoprefixer": "^10.2.5",
"cross-fetch": "^3.1.4",
"graphql": "^15.5.0",
"next": "10.1.3",
"postcss": "^8.2.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"setimmediate": "^1.0.5",
"tailwindcss": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@graphql-codegen/cli": "1.21.3",
"@graphql-codegen/typescript": "^1.21.1",
"@graphql-codegen/typescript-operations": "1.17.15",
"@graphql-codegen/typescript-react-apollo": "2.2.3",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.3",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"msw": "^0.28.1",
"next-page-tester": "^0.24.1",
"typescript": "^4.2.4"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/node_modules/jest-css-modules"
}
}
}