-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
{
"name": "calendar_anilist",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.10",
"@fontsource/lato": "^4.5.5",
"@fontsource/source-sans-pro": "^4.5.6",
"@fontsource/zen-old-mincho": "^4.5.8",
"@headlessui/react": "^1.7.7",
"@mphilpot/react-circular-menu": "^2.3.7",
"apollo3-cache-persist": "^0.14.0",
"classnames": "^2.3.1",
"graphql": "^15.5.3",
"luxon": "^2.3.1",
"ramda": "^0.28.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.0",
"react-toastify": "^8.2.0",
"react-use": "^17.3.2",
"typescript": "^4.5.4",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/luxon": "^2.3.1",
"@types/node": "^16.7.13",
"@types/ramda": "^0.28.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"tailwindcss-safe-area": "^0.2.2"
},
"resolutions": {
"graphql": "^15.5.3"
},
"scripts": {
"start": "BROWSER=\"google chrome\" react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*\"",
"format:check": "prettier --check \"src/**/*\"",
"lint": "yarn lint:tsc && yarn lint:es",
"lint:es": "eslint .",
"lint:tsc": "tsc --noemit",
"analyze": "craco build",
"update-schema": "curl -i -X POST https://graphql.anilist.co -H \"Content-Type: application/graphql\" -d @assets/introspection.graphql",
"gql-codegen": "graphql-codegen && prettier --write src/gql/ --cache"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}