forked from Gobie/luncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.5 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
{
"name": "luncher",
"version": "0.0.1",
"description": "Accessible lunch menus",
"main": "server.js",
"scripts": {
"build:prod": "./node_modules/.bin/webpack --display-error-details --config webpack.config.prod.js",
"build:dev": "./node_modules/.bin/webpack-dev-server --display-error-details --config webpack.config.dev.js",
"coverage:check": "./node_modules/.bin/babel-istanbul check-coverage",
"coverage:generate": "./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- -R spec --bail --check-leaks test/**/*.spec.js",
"lint": "./node_modules/.bin/eslint lib server service client test",
"service": "node service.js",
"server": "node server.js",
"test": "npm run lint && npm run coverage:generate && npm run coverage:check",
"test:ci": "npm run lint && npm run coverage:generate && npm run coverage:check",
"test:mocha": "./node_modules/.bin/mocha -R spec --bail --check-leaks --compilers js:babel-register test/**/*.spec.js"
},
"engines": {
"node": "8.11.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Gobie/luncher.git"
},
"keywords": [
"lunch"
],
"author": "Michal Brašna <michal.brasna@gmail.com> (https://github.com/Gobie)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gobie/luncher/issues"
},
"homepage": "https://github.com/Gobie/luncher#readme",
"dependencies": {
"@slack/client": "^2.3.0",
"amqp-connection-manager": "^1.3.1",
"amqplib": "^0.4.1",
"async": "^1.5.2",
"compression": "^1.6.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"helmet": "^1.3.0",
"lodash": "^4.17.13",
"memjs": "^0.9.0",
"moment": "^2.12.0",
"moment-timezone": "^0.5.25",
"morgan": "^1.9.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"request": "^2.70.0",
"request-x-ray": "^0.1.4",
"throng": "^3.0.0",
"tv4": "^1.2.7",
"uuid": "^2.0.1",
"ware": "^1.3.0",
"winston": "^2.2.0",
"x-ray": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-istanbul": "^0.7.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.4.5",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}