-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.4 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.4 KB
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
{
"name": "webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier -c .",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"tsc:check": "tsc --noEmit",
"generate": "graphql-codegen",
"test": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e": "./cypress/automation/run.sh"
},
"dependencies": {
"@apollo/client": "^3.10.8",
"@apollo/experimental-nextjs-app-support": "^0.11.2",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@faker-js/faker": "^7.6.0",
"@fontsource/roboto": "^4.5.8",
"@hookform/resolvers": "^2.9.11",
"@kbox-labs/react-echarts": "^1.2.0",
"@mui/icons-material": "5.15.20",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.20",
"@mui/material-nextjs": "5.15.11",
"@react-oauth/google": "^0.2.8",
"dnd-core": "^16.0.1",
"echarts": "^5.5.1",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"nanoid": "^4.0.1",
"next": "14.2.4",
"notistack": "^2.0.8",
"pluralize": "^8.0.0",
"react": "18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.43.5",
"yup": "^0.32.11",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@svgr/webpack": "^7.0.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/node": "18.7.7",
"@types/pluralize": "^0.0.29",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cypress": "^12.5.1",
"eslint": "8.22.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
}
}