forked from cassiosilva93/finance-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.22 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
{
"name": "finance-web",
"private": true,
"version": "0.0.0",
"scripts": {
"start:dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "eslint \"**/*.{ts,tsx}\"",
"codegen": "graphql-codegen --config codegen.js --require dotenv/config"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@hookform/resolvers": "^2.9.7",
"@vitejs/plugin-react": "^1.3.0",
"axios": "^0.27.2",
"cypress": "^10.7.0",
"dotenv": "^16.0.1",
"filesize": "^9.0.11",
"graphql": "^16.5.0",
"polished": "^4.2.2",
"react": "^18.0.0",
"react-apexcharts": "^1.4.0",
"react-avatar": "^5.0.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.0.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.34.0",
"react-icons": "^4.4.0",
"react-loading": "^2.0.3",
"react-modal": "^3.15.1",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.7",
"styled-components": "^5.3.5",
"vite": "^2.9.9",
"vite-plugin-graphql-codegen": "^1.8.0",
"vite-tsconfig-paths": "^3.5.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.3",
"@graphql-codegen/introspection": "2.2.0",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-operations": "2.5.2",
"@graphql-codegen/typescript-react-apollo": "3.3.2",
"@types/jest": "^29.0.0",
"@types/node": "^18.6.2",
"@types/react": "^18.0.0",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/react-dom": "^18.0.0",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^4.6.3"
}
}