-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
35
36
37
{
"name": "express-server-graphql-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node 'dist/server.js'",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/start.ts -e ts,graphql",
"build": "tsc -p . && ncp src/schema dist/schema"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.9.2",
"apollo-server-express": "^2.12.0",
"cowsay": "^1.4.0",
"express": "^4.17.1",
"graphql-import": "^1.0.2",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.2.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/graphql": "^14.5.0",
"babel-plugin-module-resolver": "^4.0.0",
"nexus": "^0.20.0",
"nodemon": "^2.0.3",
"ts-node": "^8.10.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3"
}
}