-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3 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
{
"name": "vite2-react-ts",
"version": "0.0.0",
"scripts": {
"dev": "yarn check-types:watch & vite",
"build": "tsc && vite build",
"start": "vite preview --port 3000",
"check-types": "tsc --noEmit",
"check-types:watch": "tsc --noEmit --watch",
"lint": "eslint \"src/**/*.{tsx,ts}\" --fix",
"lint-staged": "lint-staged",
"lint-pass": "echo '\\033[4;32m♡ ' Format complete ♡' \\033[0m'",
"gen:i18:keys": "ts-node --project scripts/tsconfig.json scripts/generateTranslationTypes.ts",
"gen-graphql-types": "graphql-codegen -r dotenv/config --config codegen.yml"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@ant-design/pro-card": "^1.14.0",
"@ant-design/pro-layout": "^6.19.4",
"@apollo/client": "^3.3.20",
"@aws-amplify/ui-react": "^1.2.1",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@sentry/integrations": "^6.5.1",
"@sentry/react": "^6.5.1",
"@sentry/tracing": "^6.5.1",
"@types/react-router-dom": "^5.1.7",
"antd": "^4.16.2",
"apollo-link-error": "^1.1.13",
"aws-amplify": "^4.0.3",
"axios": "^0.21.1",
"bezier-easing": "^2.1.0",
"dayjs": "^1.10.5",
"graphql": "^15.5.0",
"i18next": "^20.3.1",
"i18next-browser-languagedetector": "^6.1.1",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.10.0",
"react-lazyload": "^3.2.0",
"react-router-dom": "^5.2.0",
"recharts": "^2.0.9",
"tinycolor2": "^1.4.2",
"vite-plugin-imp": "^2.0.7"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/import-types-preset": "^1.18.2",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@graphql-codegen/typescript-react-apollo": "^2.2.5",
"@types/lodash": "^4.14.170",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.12.2",
"@types/prettier": "^2.2.3",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-lazyload": "^3.1.0",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@vitejs/plugin-react-refresh": "^1.3.3",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.1",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.1",
"rollup-plugin-visualizer": "^5.5.0",
"typescript": "^4.3.2",
"vite": "^2.3.7"
},
"pre-commit": [
"check-types",
"lint-staged",
"lint-pass"
]
}