-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 978 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
{
"name": "union_graphqlmodules_test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "tsnd --respawn --transpileOnly --ignore-watch node_modules --inspect=9229 --stack-size=10000 ./src/index.ts",
"format": "prettier \"**/*.ts\" --write",
"gen": "gql-gen"
},
"devDependencies": {
"@types/cookie": "0.3.3",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/express": "4.17.1",
"@types/graphql": "14.5.0",
"prettier": "1.18.2",
"ts-node": "8.4.1",
"ts-node-dev": "1.0.0-pre.43",
"typescript": "3.6.3"
},
"dependencies": {
"@graphql-modules/core": "0.7.12",
"apollo-server-express": "2.9.3",
"cookie": "0.4.0",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"express": "4.17.1",
"graphql": "14.5.8",
"reflect-metadata": "0.1.13",
"type-graphql": "0.17.6"
}
}