-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
49
50
51
52
53
54
{
"name": "test-graphql",
"version": "1.0.0",
"description": "Hello world in GraphQL for first steps",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc -p . && ncp src/schema build/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon \"src/server.ts\" --exec \"ts-node\" src/server.ts -e ts,graphql,json",
"test": "npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mugan86/test-graphql.git"
},
"keywords": [],
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mugan86/test-graphql/issues"
},
"homepage": "https://github.com/mugan86/test-graphql#readme",
"engines": {
"node": "12.13.0"
},
"dependencies": {
"apollo-server-express": "^2.6.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^14.3.1",
"graphql-import": "^0.7.1",
"graphql-import-node": "0.0.4",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-tools": "^4.0.4",
"http": "0.0.0",
"ncp": "^2.0.0",
"typescript": "^3.5.1"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/node": "^12.0.4",
"chai": "^4.2.0",
"easygraphql-tester": "^5.1.6",
"mocha": "^6.2.2",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4"
}
}