-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 KB
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
68
69
70
{
"name": "auth-ts-next-boilerplate",
"version": "0.1.0",
"private": false,
"license": "MIT",
"author": {
"name": "Smakosh hello@smakosh.com"
},
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"gen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.3.13",
"formik": "^2.2.6",
"graphql": "^15.5.0",
"next": "10.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.3",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^24.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"@graphql-codegen/typescript-operations": "1.17.15",
"@graphql-codegen/typescript-react-apollo": "2.2.3",
"@graphql-codegen/typescript": "1.21.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}