-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "next-graphql-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"lint:check": "eslint --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.{js,ts,jsx,tsx,css,sass,scss}\"",
"format:check": "prettier --check --ignore-path .gitignore \"**/*.{js,ts,jsx,tsx,css,sass,scss}\"",
"fix": "run-s lint format",
"check": "run-p *:check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"dist/**/*"
]
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-typist": "^2.0.2",
"caniuse-lite": "^1.0.30001457",
"eslint-config-prettier": "^8.3.0",
"graphql": "^16.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "^13.1.6",
"prettier": "^2.4.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-json-view": "^1.21.3",
"react-typist": "^2.0.5",
"regenerator": "^0.14.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-react": "^7.25.1",
"typescript": "^4.3.2"
}
}