-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
{
"name": "nycmesh-node-visualizer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"unittest": "NODE_ENV=test jest",
"integrationtest": "NODE_ENV=test npx cypress open",
"format": "prettier --check ./app",
"format:fix": "prettier --write ./app"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@turf/helpers": "^7.0.0-alpha.114",
"@turf/intersect": "^7.0.0-alpha.114",
"cors": "^2.8.5",
"cypress": "^13.12.0",
"dotenv": "^16.4.2",
"jest-environment-node": "^29.7.0",
"leaflet": "^1.9.4",
"lint-staged": "^15.1.0",
"next": "14.2.4",
"pg": "^8.11.3",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-redux": "^9.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.41.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.8",
"@types/leaflet": "^1.9.8",
"@types/node": "^20",
"@types/pg": "^8.10.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.0.11",
"i": "^0.3.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.13.0",
"npm": "^10.2.4",
"postcss": "^8",
"tailwindcss": "^3",
"ts-jest": "^29.1.2",
"typescript": "^5"
},
"lint-staged": {
"app/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint app --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"prettier --check"
]
}
}