-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.03 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
{
"name": "apollo-chat-graphql-server",
"version": "1.0.0",
"description": "Apollo Chat GraphQL Server",
"author": "Gaston Morixe <[email protected]>",
"main": "index.js",
"private": false,
"engines": {
"node": ">=7.10.0",
"npm": ">=4.5.0",
"yarn": ">=0.23.4"
},
"standard": {
"parser": "babel-eslint",
"ignore": []
},
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"build": "babel ./ -d dist",
"serv": "node dist/index.js",
"prod": "better-npm-run prod",
"dev": "better-npm-run dev",
"precommit": "npm run lint:fix"
},
"betterScripts": {
"dev": {
"command": "nodemon index.js --watch api --exec babel-node",
"env": {
"NODE_ENV": "development",
"BABEL_DISABLE_CACHE": 1
}
},
"prod": {
"command": "babel-node ./index.js",
"env": {
"BABEL_DISABLE_CACHE": 1,
"NODE_ENV": "production"
}
}
},
"repository": {
"type": "git",
"url": "[email protected]:gaston23/apollo-chat-graphql-server.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"apollo",
"graphql"
],
"dependencies": {
"ajv": "5.0.1",
"babel-plugin-inline-import": "^2.0.4",
"babel-plugin-transform-decorators": "^6.24.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"debug": "^2.4.5",
"express": "^4.15.2",
"express-graphql": "^0.6.4",
"express-jwt": "^5.3.0",
"express-validation": "^1.0.2",
"express-winston": "^2.4.0",
"graphql": "^0.9.6",
"graphql-server-express": "^0.7.2",
"graphql-subscriptions": "^0.3.1",
"graphql-tools": "^0.11.0",
"helmet": "3.5.0",
"http-status": "^1.0.1",
"kexec": "3.0.0",
"method-override": "^2.3.5",
"mongoose": "^4.9.7",
"morgan": "^1.8.1",
"optics-agent": "^1.1.2",
"subscriptions-transport-ws": "^0.6.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-promise-to-bluebird": "1.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-webpack-loaders": "0.9.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"better-npm-run": "^*",
"file-loader": "0.11.1",
"graphql-tag": "2.0.0",
"nodemon": "1.11.0",
"rollup-plugin-buble": "0.15.0",
"snazzy": "^7.0.0",
"standard": "^*",
"url-loader": "^0.5.8",
"webpack": "2.4.1"
},
"license": "MIT"
}