-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "grow-graphql-api-server",
"version": "1.0.0",
"description": "grow-iot graphql api server",
"main": "index.js",
"scripts": {
"compile": "npm run clean && babel --presets es2015 -d lib/ src/",
"clean": "rm -rf lib/",
"prepublish": "npm run compile",
"start": "nodemon lib/index.js --watch api --exec babel-node",
"test": "npm run compile && jest"
},
"author": "CommonGarden",
"license": "BSD-2-Clause",
"dependencies": {
"body-parser": "^1.16.0",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"express-session": "^1.15.0",
"graphql": "^0.9.1",
"graphql-server-express": "^0.6.0",
"graphql-subscriptions": "^0.3.0",
"graphql-tools": "^0.10.0",
"grow-graphql-schema": "file:///Users/tkay/coding/grow/grow-graphql-schema-1.0.1.tgz",
"grow-mongoose-models": "^1.0.3",
"node-uuid": "^1.4.7",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"subscriptions-transport-ws": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0",
"nodemon": "^1.11.0"
},
"jest": {
"testPathIgnorePatterns": [
"src/",
"node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonGarden/graphql-api.git"
},
"bugs": {
"url": "https://github.com/CommonGarden/graphql-api/issues"
},
"homepage": "https://github.com/CommonGarden/graphql-api#readme"
}