-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.11 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
{
"name": "calista",
"version": "0.1.0",
"description": "Add some zeverity to your Slack.",
"main": "bin/www",
"scripts": {
"start": "cross-env NODE_ENV=production npm run build:release && node dist/release",
"start:debug": "cross-env NODE_ENV=development npm run build:debug && node dist/debug",
"build:debug": "cross-env NODE_ENV=development babel src --out-dir dist/debug --source-maps",
"build:release": "cross-env NODE_ENV=production webpack -p --config webpack.config.ts",
"docs": "jsdoc -c ./jsdoc.conf.json -d docs -R README.md",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "mocha --recursive --require @babel/register",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"watch": "cross-env NODE_ENV=development webpack -d --progress --colors --config webpack.dev.config.ts --watch",
"dev": "cross-env NODE_ENV=development webpack-dev-server -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zevere/SlackBot-Calista.git"
},
"keywords": [
"chatbot",
"slack",
"node"
],
"author": "Joseph Harrison-Lim",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Zevere/SlackBot-Calista/issues"
},
"homepage": "https://github.com/Zevere/SlackBot-Calista#readme",
"dependencies": {
"@slack/client": "^4.8.0",
"apollo-boost": "^0.1.22",
"axios": "^0.18.0",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"flow-runtime": "^0.17.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"http-errors": "^1.7.1",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"qs": "^6.6.0",
"rotating-file-stream": "^1.3.9",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@types/copy-webpack-plugin": "^4.4.2",
"@types/express": "^4.16.0",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.10",
"@types/webpack": "^4.4.19",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-flow-runtime": "^0.17.0",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-plugin-babel": "^5.3.0",
"istanbul": "^0.4.5",
"jsdoc-babel": "^0.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"nodemon-webpack-plugin": "^4.0.6",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"nyc": {
"include": ["src/**/*.js"],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
}
}