-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "pokedex",
"version": "0.8.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "jest test --collectCoverage",
"test:watch": "jest test --watch",
"test:watchAll": "jest test --watchAll",
"prepare": "husky install",
"generateTypes": "graphql-codegen"
},
"dependencies": {
"@xstate/react": "3.0.0",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "7.30.0",
"react-query": "3.38.1",
"sharp": "0.30.4",
"xstate": "4.32.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.10",
"@graphql-codegen/typescript-operations": "2.3.7",
"@graphql-codegen/typescript-react-query": "3.5.11",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"autoprefixer": "10.4.7",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"graphql": "16.4.0",
"husky": "7.0.4",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"postcss": "8.4.13",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "0.1.10",
"tailwindcss": "3.0.24",
"typescript": "4.6.4"
}
}