-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
{
"name": "guildspace",
"version": "0.1.0",
"description": "GuildSpace — self-hosted guild platform",
"main": "src/index_web.js",
"type": "module",
"scripts": {
"build": "npm run build:client && tsc",
"build:client": "cd client && npm install && npm run build",
"start": "node dist/index_web.js",
"test": "vitest",
"test:run": "vitest run"
},
"author": "Ryan D. Ward (ryandward@github)",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"pg": "^8.11.5",
"socket.io": "^4.8.3",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"typescript": "^5.5.2",
"vitest": "^4.1.9"
}
}