-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "bfree",
"version": "0.1.0",
"engines": {
"node": ">=18.18.0",
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm"
]
},
"private": true,
"scripts": {
"dev": "NEXT_TELEMETRY_DISABLED=${NEXT_TELEMETRY_DISABLED:-1} next dev",
"build": "NEXT_TELEMETRY_DISABLED=${NEXT_TELEMETRY_DISABLED:-1} next build",
"clean": "rm -rf .next",
"start": "NEXT_TELEMETRY_DISABLED=${NEXT_TELEMETRY_DISABLED:-1} next start",
"prettier": "prettier --write './{pages,components,lib}/**/*.{ts,tsx}'",
"lint": "NEXT_TELEMETRY_DISABLED=${NEXT_TELEMETRY_DISABLED:-1} next lint"
},
"dependencies": {
"@emotion/css": "11.11.2",
"@emotion/react": "11.11.1",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.14.15",
"@mui/material": "5.14.15",
"@nivo/line": "0.80.0",
"leaflet-ant-path": "1.3.0",
"next": "14.0.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hooks-global-state": "2.1.0",
"react-leaflet": "4.2.1",
"react-leaflet-draw": "^0.20.4",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"sharp": "0.31.2"
},
"devDependencies": {
"@types/node": "18.11.14",
"@types/react": "18.2.33",
"@types/web-bluetooth": "0.0.19",
"eslint": "8.52.0",
"eslint-config-next": "13.5.6",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}