forked from ci7lus/imau
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "imau",
"version": "1.0.0",
"description": "Sync your viewing status from Annict to MAL to play AMQ (AnimeMusicQuiz).",
"author": "ci7lus <7887955+ci7lus@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:ci7lus/imau.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint:prettier": "prettier --check './src/**/*.{js,ts,tsx}'",
"format:prettier": "prettier --write './src/**/*.{js,ts,tsx}'",
"lint:eslint": "eslint --max-warnings 0 --cache './src/**/*.{js,ts,tsx}'",
"format:eslint": "eslint './src/**/*.{js,ts,tsx}' --cache --fix",
"codegen": "graphql-codegen --config ./annict-codegen.yml && yarn format:prettier"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-graphql-request": "^4.4.8",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@types/cookie": "^0.5.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8.15.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vite": "^2.9.9"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --max-warnings 0 --cache",
"*.{js,ts,tsx,md}": "prettier"
},
"dependencies": {
"@ci7lus/eslint-config": "^1.1.0",
"@mantine/core": "^4.2.5",
"@mantine/hooks": "^4.2.5",
"@netlify/functions": "^1.0.0",
"axios": "^0.27.2",
"cookie": "^0.5.0",
"graphql": "^16.5.0",
"mal-ts": "^1.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.0",
"tabler-icons-react": "^1.51.0"
}
}