-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 892 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 892 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": "ummon-dev-backend-app",
"version": "1.0.0",
"description": "Ummon dev backend app",
"type": "commonjs",
"devDependencies": {
"@types/node": "^16.11.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@apollo/subgraph": "^2.8.0",
"@as-integrations/fastify": "^2.1.1",
"@fastify/sensible": "^5.5.0",
"ajv-formats": "^2.1.1",
"commander": "^11.1.0",
"dotenv": "^16.0.3",
"env-schema": "^5.2.1",
"fastify": "^4.14.1",
"graphql-scalars": "^1.21.3",
"graphql-tag": "^2.12.6",
"pino": "^8.17.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.16"
},
"scripts": {
"start:development": "ts-node src/main.ts",
"start:production": "node src/main.js",
"build": "tsc -p .",
"typeorm": "typeorm-ts-node-commonjs"
}
}