-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.57 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
{
"name": "@hivemapper/scout",
"license": "MIT",
"version": "0.0.60",
"private": false,
"repository": "https://github.com/Hivemapper/hivemapper-scout",
"homepage": "https://hivemapper.com",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"style": "./dist/index.css",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./index.css": "./dist/index.css",
"./utils": {
"import": "./dist/utils/index.mjs",
"default": "./dist/utils/index.js"
}
},
"scripts": {
"generate": "node ./src/scripts/generateGlobalCSS.ts",
"build": "pnpm generate && tsup src/index.ts --target esnext --format esm --dts",
"build-dev": "pnpm generate && tsup src/index.ts --env.API_ROOT $API_ROOT --env.DEVELOPMENT true --target esnext --format esm --dts",
"lint": "tsc",
"style": "prettier . --write",
"release": "pnpm lint && pnpm build && pnpm publish",
"watch": "nodemon --ignore src/global.css"
},
"nodemonConfig": {
"watch": [
"src/**/*.{js,ts,tsx,css}"
],
"ext": "js,ts,tsx,css",
"ignore": [
"dist"
],
"exec": "pnpm run build-dev"
},
"engines": {
"node": ">=16.18.1",
"npm": ">=8.x"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@turf/turf": "^6.5.0",
"@types/node": "^20.9.0",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.15",
"@types/uuid": "^9.0.8",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.16",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"csv-parse": "^5.5.3",
"date-fns": "^2.30.0",
"geographiclib-geodesic": "^2.0.0",
"lucide-react": "^0.292.0",
"maplibre-gl": "^3.5.2",
"maplibregl-mapbox-request-transformer": "^0.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"rc-pagination": "^3.7.0",
"react-day-picker": "^8.9.1",
"react-dropzone": "^14.2.3",
"react-intersection-observer": "^9.5.2",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}