-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.68 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "c-farms",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cdk": "cdk",
"deploy": "ts-node bin.ts",
"generate:codegen": "graphql-codegen --require dotenv/config --config codegen.ts",
"generate:codegen:adapter": "graphql-codegen --require dotenv/config --config src/lib/authentication/codegen.ts",
"prepare": "husky install",
"lint-staged": "lint-staged --allow-empty",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"coverage": "cypress run --headless --browser chrome --task coverage",
"dev:instrumented": "INSTRUMENT_CODE=1 next dev",
"pretest": "rm -rf .nyc_output coverage .next",
"test": "start-server-and-test dev:instrumented http://localhost:3000 cypress:headless"
},
"dependencies": {
"@aws-amplify/ui-react": "1.2.26",
"@casl/ability": "^6.3.2",
"@casl/react": "^3.1.0",
"@date-io/date-fns": "1.3.13",
"@emotion/cache": "^11.10.3",
"@emotion/react": "11.10.4",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.4",
"@faker-js/faker": "^7.6.0",
"@hookform/resolvers": "^2.9.8",
"@mui/icons-material": "5.10.6",
"@mui/lab": "5.0.0-alpha.100",
"@mui/material": "5.10.6",
"@mui/styles": "5.10.6",
"@mui/x-date-pickers": "5.0.2",
"@types/file-saver": "^2.0.5",
"@types/jsonexport": "^3.0.2",
"@types/leaflet-draw": "^1.0.5",
"@types/lodash": "^4.14.177",
"@urql/devtools": "^2.0.3",
"@urql/exchange-graphcache": "^5.0.2",
"aws-amplify": "^4.3.8",
"aws-sdk": "^2.1033.0",
"axios": "^0.24.0",
"camelcase-keys": "^8.0.2",
"date-fns": "^2.26.0",
"file-saver": "^2.0.5",
"graphql": "^16.3.0",
"js-search": "^2.0.0",
"jsonexport": "^3.2.0",
"leaflet": "^1.9.1",
"leaflet-draw": "^1.0.4",
"leaflet-fullscreen": "^1.0.2",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"material-ui-popup-state": "^4.1.0",
"nanoid": "^4.0.0",
"next": "^12.3.1",
"next-auth": "^4.15.0",
"nodemailer": "^6.8.0",
"notistack": "^2.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.36.1",
"react-leaflet": "^4.1.0",
"react-leaflet-draw": "^0.19.8",
"recharts": "^2.1.15",
"urql": "^3.0.3",
"yup": "^0.32.11",
"zustand": "^3.6.5"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@graphql-codegen/cli": "^2.12.1",
"@graphql-codegen/import-types-preset": "^2.2.5",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/near-operation-file-preset": "2.2.2",
"@graphql-codegen/typescript": "2.4.1",
"@graphql-codegen/typescript-graphql-request": "^4.5.7",
"@graphql-codegen/typescript-operations": "2.2.1",
"@graphql-codegen/typescript-urql": "^3.7.2",
"@graphql-codegen/urql-introspection": "^2.2.1",
"@testing-library/cypress": "^8.0.7",
"@types/cypress__code-coverage": "^3.10.0",
"@types/js-search": "^1.4.0",
"@types/leaflet": "^1.7.9",
"@types/node": "16.11.9",
"@types/react": "17.0.35",
"@typescript-eslint/eslint-plugin": "5.5.0",
"autoprefixer": "^10.4.0",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^11.2.0",
"eslint": "^8.13.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"istanbul": "^0.4.5",
"lint-staged": "^12.3.7",
"postcss": "^8.3.11",
"prettier": "2.5.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.19",
"ts-node": "10.4.0",
"typescript": "4.5.2"
}
}