-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 915 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 915 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
{
"name": "ts-apollo-server-express",
"description": "Typescript based apollo server express with gql file & resolver loaders ",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"start": "npx tsx ./src/index.ts",
"start:dev": "npx tsx watch ./src/index.ts"
},
"keywords": [],
"dependencies": {
"@graphql-tools/load-files": "6.6.1",
"@types/node": "20.10.1",
"apollo-server": "^3.3.0",
"apollo-server-core": "3.10.3",
"apollo-server-express": "3.10.3",
"express": "4.18.2",
"graphql": "^15.5.3",
"graphql-playground-middleware-express": "1.7.23",
"node-fetch": "^3.3.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "10.9.1",
"tsx": "^4.10.2",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"nodemon": "^3.0.1"
}
}