-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 828 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": "graphql-schema-modularize",
"main": "./build/index.js",
"description": "graphql schema modularized",
"scripts": {
"build": "tsc",
"server": "tsc && npm run build && nodemon ./build/index.js",
"start": "node ./build/index.js",
"ts:watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"src"
],
"keywords": [
"nodejs",
"expressjs",
"express",
"graphql"
],
"author": "Archana Agivale",
"dependencies": {
"cors": "^2.8.4",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"mongoose": "^5.10.15",
"tslint": "^6.1.3",
"ts-node": "^6.2.0"
},
"devDependencies": {
"nodemon": "^1.17.3",
"typescript": "2.6.2",
"@types/node": "^8.10.38"
}
}