-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
62
63
64
65
66
67
{
"name": "link-tree",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --maxWorkers=50% --watch",
"migrations": "node src/migrations/create.js",
"codegen:generate": "graphql-codegen --config codegen.yml",
"codegen:lint": "prettier --write src/graphql/types.ts",
"codegen": "yarn codegen:generate && yarn codegen:lint",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint --fix",
"yarn prettier --write"
]
},
"dependencies": {
"graphql": "16.3.0",
"graphql-request": "4.0.0",
"next": "12.0.10",
"next-seo": "5.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sharp": "0.30.1"
},
"devDependencies": {
"@graphcms/management": "1.4.0",
"@graphql-codegen/add": "3.1.1",
"@graphql-codegen/cli": "2.6.1",
"@graphql-codegen/typescript": "2.4.3",
"@graphql-codegen/typescript-operations": "2.3.0",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@types/jest": "27.4.0",
"@types/node": "17.0.17",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"autoprefixer": "10.4.2",
"dotenv": "16.0.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.4",
"postcss": "8.4.6",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "0.1.7",
"tailwindcss": "3.0.22",
"typescript": "4.5.5"
}
}