-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "map-prototype-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "commit-wizard"
},
"dependencies": {
"@feltmaps/js-sdk": "^1.1.0",
"@mantine/charts": "^7.9.2",
"@mantine/core": "^7.9.2",
"@mantine/hooks": "^7.9.2",
"@next/third-parties": "^14.2.3",
"@tabler/icons-react": "^3.22.0",
"deck.gl": "^9.0.14",
"mapbox-gl": "^3.3.0",
"mixpanel-browser": "^2.50.0",
"next": "14.2.3",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"react": "^18",
"react-dom": "^18",
"react-map-gl": "^7.1.7",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"lint-staged": "^15.2.2",
"pre-git": "^3.17.1",
"typescript": "^5"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"config": {
"pre-git": {
"pre-commit": [
"npx tsc",
"npx lint-staged"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}