-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.61 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
{
"name": "@kausal/nzc-data-studio",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS=--inspect next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:fix": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"graphql-codegen": "graphql-codegen --config config/codegen.ts"
},
"dependencies": {
"@apollo/client": "^3.10.5",
"@apollo/experimental-nextjs-app-support": "^0.11.2",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.19",
"@mui/material-nextjs": "^5.15.11",
"@mui/x-data-grid": "^7.6.2",
"@next/bundle-analyzer": "^14.2.3",
"@sentry/nextjs": "^8.36.0",
"@types/lodash": "^4.17.5",
"@types/papaparse": "^5.3.14",
"docker-secret": "^2.0.6",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.19",
"papaparse": "^5.4.1",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"react": "^18.2.0",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.2.0",
"react-number-format": "^5.4.0",
"serialize-error": "^12.0.0",
"sharp": "^0.33.4",
"zustand": "^4.5.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.17.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"importSorter": {
"maxLineLength": 100,
"emptyLinesAfterAllImports": 1,
"wrappingStyle": {
"maxBindingNamesPerLine": 100,
"maxDefaultAndBindingNamesPerLine": 100,
"maxExportNamesPerLine": 0,
"maxNamesPerWrappedLine": 1,
"ignoreComments": true
},
"nodeProtocol": "always",
"groupRules": [
"^node:",
[
"^react(-dom)?$",
"^next/",
"^@mui/"
],
{},
[
"^@/",
"^[.]"
]
]
}
}