-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 808 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 808 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
31
32
33
34
{
"name": "echovolt-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/http/server.ts",
"build": "tsup src",
"start": "node dist/http/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.1",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.4",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@apollo/server": "^4.11.3",
"@paralleldrive/cuid2": "^2.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-graphql": "^0.8.5",
"drizzle-orm": "^0.39.3",
"graphql": "^16.10.0",
"pg": "^8.13.2"
}
}