forked from acikyazilimagi/deprem-yardim-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.48 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
{
"name": "deprem-yardim-frontend",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"homepage": "https://github.com/acikkaynak/deprem-yardim-frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/acikkaynak/deprem-yardim-frontend"
},
"bugs": {
"url": "https://github.com/acikkaynak/deprem-yardim-frontend/issues"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "npm run partytown && next build",
"partytown": "partytown copylib public/~partytown",
"start": "next start",
"export": "next export",
"lint": "next lint --max-warnings=0",
"lint:fix": "next lint --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"resources": "capacitor-resources -p android,ios",
"build:android": "npm run build && npm run export && npx cap add android",
"dev:android": "npx cap run android"
},
"dependencies": {
"@builder.io/partytown": "^0.7.5",
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"@next/font": "13.1.6",
"@types/node": "18.11.19",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@vgrid/react-leaflet-heatmap-layer": "^4.0.3",
"@capacitor/android": "^4.6.3",
"@capacitor/cli": "^4.6.3",
"@capacitor/core": "^4.6.3",
"capacitor-resources": "^2.0.5",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"formatcoords": "^1.1.3",
"leaflet": "^1.9.3",
"leaflet.markercluster": "^1.5.3",
"next": "13.1.6",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-leaflet": "^4.2.0",
"typescript": "4.9.5",
"zustand": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/formatcoords": "^1.1.0",
"@types/leaflet": "^1.9.0",
"@types/leaflet.markercluster": "^1.5.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"msw": "^1.0.0",
"prettier": "^2.8.3"
},
"lint-staged": {
"**": "npx prettier --write .",
"**/*.{js,ts,tsx}": "npx next lint --max-warnings=0"
},
"msw": {
"workerDirectory": "public"
}
}