-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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": "wantedly-frontend",
"version": "1.0.1",
"private": true,
"scripts": {
"start": "next dev",
"lint": "next lint",
"lint:prettier": "prettier . --check --ignore-path .eslintignore",
"format": "yarn lint --fix && yarn lint:prettier --write",
"prepare": "husky install && yarn gen",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"gen": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn format",
"git add"
]
},
"dependencies": {
"@apollo/client": "^3.3.20",
"graphql": "^15.5.1",
"next": "11.0.1",
"next-seo": "^4.26.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.5",
"@types/node": "^15.12.4",
"@types/react": "17.0.11",
"autoprefixer": "^10.2.6",
"eslint": "7.29.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.5",
"prettier": "^2.3.1",
"standard-version": "^9.3.0",
"tailwindcss": "^2.2.2",
"typescript": "4.3.4",
"@graphql-codegen/typescript-operations": "1.18.2",
"@graphql-codegen/typescript": "1.22.3",
"@graphql-codegen/typescript-react-apollo": "2.2.7"
}
}