-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 993 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 993 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
35
36
37
{
"name": "@sample/graphql-server",
"version": "0.1.0",
"description": "",
"author": "DoltHub",
"scripts": {
"build": "nest build",
"check-server": "./ci-helper.sh ./",
"compile": "tsc -b",
"dev": "NODE_ENV=development nest start --watch",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "jest"
},
"dependencies": {
"@apollo/server": "^5.0.0",
"@nestjs/apollo": "^13.2.0",
"@nestjs/cli": "^11.0.10",
"@nestjs/common": "^11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.11",
"@nestjs/graphql": "^13.2.0",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/schematics": "^11.0.9",
"@nestjs/terminus": "^11.0.0",
"@nestjs/typeorm": "^11.0.0",
"cors": "^2.8.5",
"graphql": "^16.11.0",
"mysql2": "^3.16.2",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.27"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}