-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.78 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
111
112
113
114
115
{
"name": "em-carbon-mapper",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:styles": "npx stylelint \"**/*.scss\"",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --silent=false",
"test:watch:all": "jest --watchAll --silent=false",
"cy:run": "cypress run",
"cy:open": "cypress open",
"e2e:run": "start-server-and-test dev http://localhost:3000 cy:run",
"e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"prepare": "husky install"
},
"dependencies": {
"@azure/msal-browser": "^3.13.0",
"@azure/msal-react": "^2.0.15",
"@hookform/resolvers": "^3.3.4",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/length": "^6.5.0",
"@turf/turf": "^6.5.0",
"@types/d3": "^7.4.3",
"@types/node": "18.16.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"axios": "^1.6.8",
"axios-auth-refresh": "^3.3.6",
"axios-cache-interceptor": "^1.5.1",
"classnames": "^2.5.1",
"d3": "^7.9.0",
"dayjs": "^1.11.10",
"eslint": "^8.57.0",
"eslint-config-next": "13.3.1",
"file-saver": "^2.0.5",
"framer-motion": "^10.18.0",
"geojson": "^0.5.0",
"gsap": "file:gsap-bonus.tgz",
"js-file-download": "^0.4.12",
"jszip": "^3.10.1",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^2.15.0",
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
"next": "^13.5.6",
"next-query-params": "^5.0.0",
"query-string": "^8.2.0",
"react": "18.2.0",
"react-calendar": "^4.8.0",
"react-dom": "18.2.0",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.51.3",
"react-loading-skeleton": "^3.4.0",
"react-map-gl": "^7.1.7",
"react-range": "^1.8.14",
"react-virtuoso": "^4.7.8",
"simple-zustand-devtools": "^1.1.0",
"swr": "^2.2.5",
"typescript": "5.0.4",
"use-query-params": "^2.2.1",
"xss": "^1.0.15",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.12",
"@types/lodash.debounce": "^4.0.9",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/mapbox-gl": "^2.7.21",
"@types/react-gtm-module": "^2.0.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"cypress": "^13.7.3",
"eslint": "^8.57.0",
"eslint-config-next": "13.0.7",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-perfectionist": "^2.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"sass": "^1.75.0",
"sass-loader": "^13.3.3",
"start-server-and-test": "^2.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint src"
],
"*.test.{ts, tsx}": [
"jest --passWithNoTests"
],
"*.spec.{ts, tsx}": [
"jest --passWithNoTests"
]
}
}