-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.49 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
{
"name": "wormhole",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently -n vite,api \"npm run vite:dev\" \"npm run api:dev\"",
"build": "npm run vite:build && npm run api:build",
"start": "node ./.local/express/dist/api.js",
"vite:build": "vite build --emptyOutDir",
"vite:dev": "vite",
"api:build": "rimraf ./.local/express/dist && esbuild --sourcemap ./src/server/express/index.ts --bundle --format=cjs --platform=node --outfile=./.local/express/dist/api.js",
"api:build:watch": "npm run api:build -- --watch",
"api:dev": "concurrently -n build,serve \"npm run api:build:watch\" \"wait-on ./.local/express/dist/api.js && nodemon --inspect=8229 --legacy-watch --watch ./.local/express/dist ./.local/express/dist/api.js ./src/server\"",
"tsc": "tsc --pretty",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"test:all": "npm run lint && npm run tsc && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSpace/Wormhole.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenSpace/Wormhole/issues"
},
"homepage": "https://github.com/OpenSpace/Wormhole#readme",
"dependencies": {
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"express": "^4.19.1",
"firebase": "^10.12.1",
"firebase-admin": "^12.1.1",
"lodash": "^4.17.21",
"nodemon": "^3.1.0",
"openspace-api-js": "^0.1.6",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"recharts": "^2.12.7",
"url": "^0.11.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/css-modules": "^1.0.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "5.4.3",
"vite": "^5.2.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pages": "^0.32.0",
"wait-on": "^7.2.0"
}
}