-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "nodejs-typescript-express-apollo-graphql-starter",
"version": "1.0.0",
"description": "NodeJS Apollo server with Typescript, express and GraphQL",
"main": "src/server.js",
"scripts": {
"start": "node 'dist/server.js'",
"build": "tsc -p . && ncp src/schema dist/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon 'src/server.ts' --exec 'ts-node' src/server.ts -e ts,graphql"
},
"keywords": [
"nodejs",
"typescript",
"graphql",
"apollo",
"express"
],
"author": "Thomas Guibert",
"license": "ISC",
"bugs": {
"url": "https://github.com/thmsgbrt/nodejs-typescript-express-apollo-graphql-starter/issues"
},
"homepage": "https://github.com/thmsgbrt/nodejs-typescript-express-apollo-graphql-starter#readme",
"devDependencies": {
"@types/compression": "0.0.36",
"@types/express": "4.16.1",
"@types/graphql": "14.0.7",
"@types/graphql-depth-limit": "1.1.0",
"@types/node": "11.9.4",
"graphql-depth-limit": "1.1.0",
"graphql-import": "0.7.1",
"graphql-import-node": "0.0.1",
"nodemon": "1.18.10",
"ts-node": "8.0.2",
"typescript": "3.3.3"
},
"dependencies": {
"apollo-server-express": "2.14.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"graphql": "14.5.8",
"http": "0.0.0",
"ncp": "2.0.0"
}
}