This repository has been archived by the owner on Nov 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
127 lines (127 loc) · 3.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "express-graphql-typescript-boilerplate",
"version": "1.0.0-rc.3",
"description": "A Node.Js boilerplate written in TypeScript with express and GraphQL",
"main": "src/index.ts",
"scripts": {
"install:typings": "./node_modules/.bin/typings install",
"install:dev": "npm install && npm run install:typings",
"install:clean": "npm prune && ./node_modules/.bin/typings prune",
"serve": "./node_modules/.bin/nodemon --watch 'src/**/*.ts'",
"serve:debug": "./node_modules/.bin/nodemon --watch 'src/**/*.ts' --debug=6666",
"lint": "./node_modules/.bin/gulp lint",
"test": "NODE_ENV=test ./node_modules/.bin/gulp test",
"test:pretty": "NODE_ENV=test ./node_modules/.bin/gulp test:pretty",
"build": "./node_modules/.bin/gulp build",
"clean": "./node_modules/.bin/gulp clean",
"zip": "./node_modules/.bin/gulp zip",
"docs": "npm run docs:generate && npm run docs:server",
"docs:generate": "./node_modules/.bin/gulp docs",
"docs:server": "./node_modules/.bin/http-server ./docs --cors",
"db:migrate": "./node_modules/.bin/knex migrate:latest",
"db:migrate:rollback": "./node_modules/.bin/knex migrate:rollback",
"db:seed": "./node_modules/.bin/knex seed:run",
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/w3tecch/express-graphql-typescript-boilerplate.git"
},
"engines": {
"node": "^6.9.2"
},
"keywords": [
"NodeJS",
"TypeScript",
"express",
"GraphQL",
"boilerplate",
"skeleton",
"starter-kit",
"w3tec.ch"
],
"author": "w3tec.ch <[email protected]>",
"contributors": [
{
"name": "David Weber",
"email": "[email protected]",
"url": "https://github.com/dweber019"
},
{
"name": "Gery Hirschfeld",
"email": "[email protected]",
"url": "https://github.com/hirsch88"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/w3tecch/express-graphql-typescript-boilerplate/issues"
},
"homepage": "https://github.com/w3tecch/express-graphql-typescript-boilerplate#readme",
"dependencies": {
"@types/bluebird": "^3.5.18",
"@types/body-parser": "^1.16.7",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.11.0",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.39",
"@types/faker": "^4.1.2",
"@types/helmet": "^0.0.37",
"@types/lodash": "^4.14.80",
"@types/morgan": "^1.7.35",
"@types/reflect-metadata": "0.1.0",
"@types/request": "^2.0.8",
"@types/serve-favicon": "^2.2.29",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.7",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"dataloader": "^1.3.0",
"debug": "^3.1.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"faker": "^4.1.0",
"graphql": "^0.13.2",
"helmet": "^3.4.0",
"knex": "^0.14.4",
"lodash": "^4.17.4",
"morgan": "^1.7.0",
"mysql": "^2.13.0",
"ts-node": "^5.0.1",
"uuid": "^3.0.1",
"winston": "^2.3.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-copy": "^1.0.0",
"gulp-filter": "^5.1.0",
"gulp-jasmine": "^3.0.0",
"gulp-json-editor": "^2.2.1",
"gulp-load-plugins": "^1.4.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typedoc": "^2.0.2",
"gulp-typescript": "^4.0.1",
"gulp-zip": "^4.1.0",
"http-server": "^0.11.1",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"request": "^2.79.0",
"require-dir": "^1.0.0",
"run-sequence": "^2.2.1",
"sqlite3": "^4.0.0",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.2.1",
"typings": "^2.1.0"
}
}