-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 KB
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
{
"name": "wheeljack",
"version": "0.1.0",
"author": "DataGov",
"repository": {
"type": "git",
"url": "https://github.com/data-gov/wheeljack.git"
},
"scripts": {
"start": "concurrently 'npm run hubot:fb' 'npm run hubot:gitter' 'npm run hubot:telegram'",
"test": "jest",
"test:watch": "jest --watch",
"lint:check": "eslint ./src/ ./tests/",
"lint:fix": "npm run lint:check -- --fix",
"commitizen": "git cz",
"hubot": "eval $(./dotenv.sh) && hubot --name 'wheeljack'",
"hubot:gitter": "PORT=8081 npm run hubot -- --adapter gitter",
"hubot:fb": "npm run hubot -- --adapter fb",
"hubot:telegram": "PORT=8082 npm run hubot -- --adapter telegram",
"prettier": "prettier --write 'src/**/*.js'",
"precommit": "npm run lint:check",
"prepush": "npm test"
},
"dependencies": {
"apollo-client": "^2.0.1",
"apollo-client-preset": "^1.0.1",
"concurrently": "^3.5.0",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"hubot": "^2.19.0",
"hubot-fb": "^5.0.0",
"hubot-gitter": "^1.0.0",
"hubot-heroku-keepalive": "1.0.3",
"hubot-telegram": "0.1.2",
"node-fetch": "^1.7.3",
"node-wit": "^4.3.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-graphql": "^1.4.0-1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.5.0",
"husky": "^0.14.3",
"jest": "^21.1.0",
"prettier": "^1.10.2"
},
"optionalDependencies": {
"fsevents": "1.1.2"
},
"engines": {
"node": "8.9.1",
"npm": "5.5.1"
}
}