-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.11 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
94
95
96
{
"name": "recruit.hanowl.com",
"packageManager": "[email protected]",
"type": "module",
"version": "1.0.0",
"repository": "https://github.com/hanowwl/recruit.hanowl.com",
"maintainers": [
{
"name": "HanSu Lee",
"email": "[email protected]",
"url": "https://github.com/hanseo0507"
},
{
"name": "Mingi Choe",
"email": "[email protected]",
"url": "https://github.com/cmg8431"
},
{
"name": "GeunWon Choi",
"email": "[email protected]",
"url": "https://github.com/choi138"
}
],
"scripts": {
"postinstall": "husky install",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json}\" --fix --cache",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"dev": "vite",
"build": "yarn codegen && tsc && vite build",
"preview": "vite preview",
"update-types": "npx supabase gen types typescript --project-id \"ccwsbtcyjgxeglanocrv\" > src/types/supabase.ts",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --config codegen.ts --watch"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@sentry/react": "^7.42.0",
"@sentry/tracing": "^7.42.0",
"@supabase/supabase-js": "^2.10.0",
"@tanstack/react-table": "^8.7.9",
"dayjs": "^1.11.7",
"framer-motion": "^10.2.3",
"graphql": "^16.6.0",
"jotai": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.8.0",
"react-router-dom": "^6.8.2"
},
"devDependencies": {
"@graphql-codegen/cli": "3.2.2",
"@graphql-codegen/client-preset": "2.1.1",
"@graphql-codegen/import-types-preset": "^2.2.6",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-operations": "^3.0.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-codegen/typescript-resolvers": "^3.1.1",
"@graphql-typed-document-node/core": "^3.1.2",
"@types/node": "^18.14.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"supabase": "^1.41.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.0"
},
"lint-staged": {
"**/*.+(ts|tsx|js|jsx|json)": [
"eslint --fix --cache",
"prettier --write"
]
}
}