-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ufo-monorepo",
"version": "1.0.1",
"description": "Testing MUFON/Norwegian UFO data in PostGIS and React with OpenLayers",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"packages/common-types",
"packages/config",
"packages/logger",
"packages/client",
"packages/dbh",
"packages/api-functions",
"packages/vercel",
"packages/server",
"api"
],
"scripts": {
"build": "npx turbo run build",
"vercel-build": "npx turbo run build",
"build:native": "npm run build -ws",
"dev:client": "dotenv -e .env npm run dev --w packages/client",
"start:server": "dotenv -e .env npm run dev -w packages/server",
"dev:server": "dotenv -e .env npm run watch -w packages/server",
"predev:preview": "dotenv -e .env npm run build -w packages/client",
"dev:preview": "dotenv -e .env npm run preview -w packages/client",
"start": "concurrently \"npm run dev:api\" \"npm run dev:preview",
"docs": "dot -Tpng -o docs/images/arch-flowchart.png docs/arch-flowchart.dot"
},
"devDependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@rollup/pluginutils": "^5.1.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^14.2.2",
"@types/debounce": "^1.2.4",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa-router": "^7.4.8",
"@types/node": "^18.11.9",
"@types/pg": "^8.11.2",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"babel-jest": "^29.7.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^2.8.0",
"pwa-asset-generator": "^6.3.2",
"redux-mock-store": "^1.5.4",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"turbo": "^2.2.3",
"typescript": "^5.2.2",
"unplugin-parcel-macros": "^0.0.3",
"vite": "^5.1.4",
"vite-plugin-css-modules": "^0.0.1"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@reduxjs/toolkit": "^2.2.1",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.6",
"@ufo-monorepo/common-types": "file:../common-types",
"@ufo-monorepo/config": "file:../config",
"@vercel/node": "^3.2.15",
"@vercel/postgres": "^0.10.0",
"ag-grid-community": "^32.1.0",
"ag-grid-react": "^32.1.0",
"concurrently": "^8.2.2",
"debounce": "^2.0.0",
"dotenv": "^16.4.5",
"geojson": "^0.5.0",
"koa": "^2.15.0",
"koa-router": "^12.0.1",
"ol": "^9.0.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-intl-universal": "^2.11.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"redux": "^5.0.1",
"vite-plugin-pwa": "^0.20.5",
"winston": "^3.14.2"
}
}