-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "kitsu-wiki",
"version": "0.1.0",
"dependencies": {
"@apollo/client": "^3.3.0",
"@fortawesome/fontawesome-free": "^5.15.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.14",
"blurhash": "^1.1.3",
"bootstrap": "^4.5.3",
"date-fns": "^2.16.1",
"graphql": "^15.4.0",
"graphql.macro": "^1.4.2",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-blurhash": "^0.1.3",
"react-date-picker": "^8.0.7",
"react-datetime-picker": "^3.0.5",
"react-day-picker": "^7.4.8",
"react-dom": "^17.0.1",
"react-hook-form": "^6.14.1",
"react-lazyload": "^3.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-select": "^4.0.2",
"reactstrap": "^8.8.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@graphql-codegen/cli": "^1.19.2",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/near-operation-file-preset": "^1.17.12",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-operations": "^1.17.10",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-lazyload": "^3.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/react-select": "^4.0.12",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"typescript": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cg": "graphql-codegen --config codegen.yml",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --jsx-bracket-same-line --end-of-line lf --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}