-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 971 Bytes
/
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
{
"name": "graphql-ts-basic",
"version": "1.0.0",
"description": "基於GraphcQL的設計介面,與MongoDB互動的Typescript web Server範例",
"main": "build/index.js",
"scripts": {
"start": "nodeman build/index.js",
"build": "tsc",
"node": "tsc && node build/index.js",
"watch:debug": "nodemon --inspect=5858 -e ts,tsx --exec node -r ts-node/register ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwangsing3/graphql-ts-basic.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kwangsing3/graphql-ts-basic/issues"
},
"homepage": "https://github.com/kwangsing3/graphql-ts-basic#readme",
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"dependencies": {
"@apollo/server": "^4.3.1",
"graphql": "^16.6.0",
"mongoose": "^6.8.4",
"nodeman": "^1.1.2"
}
}