-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.29 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
{
"name": "issue-bot",
"version": "0.1.0",
"description": "Automate Issue replies and organization",
"main": "index.js",
"scripts": {
"test": "mocha",
"scripts:classify": "python scripts/multi-label_classification.py",
"scripts:get-issues": "node scripts/get-issues.js",
"scripts": "npm-run-all run:get-issues run:classify",
"build": "webpack",
"start:webpack-watch": "webpack --watch",
"start:webpack": "webpack-dev-server --hot --inline",
"start:server": "node src",
"start": "npm-run-all --parallel start:webpack start:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glavin001/IssueBot.git"
},
"keywords": [
"issue",
"github",
"bot",
"automation",
"issues",
"organize"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glavin001/IssueBot/issues"
},
"homepage": "https://github.com/Glavin001/IssueBot#readme",
"dependencies": {
"async": "^2.0.0-rc.6",
"babel-core": "^6.9.1",
"bootstrap": "^3.3.6",
"bootstrap-sass": "^3.3.6",
"config": "^1.21.0",
"d3": "^3.5.17",
"express": "^4.13.4",
"font-awesome": "^4.6.3",
"font-awesome-webpack": "0.0.4",
"github": "^1.1.1",
"github-oauth": "^0.2.2",
"github-webhook-handler": "^0.5.0",
"jquery": "^2.0.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"parse-github-url": "^0.3.1",
"pg": "^5.1.0",
"pg-hstore": "^2.3.2",
"python-shell": "^0.4.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-if": "^2.0.5",
"react-router": "^2.4.1",
"sequelize": "^3.23.3",
"socket.io": "^1.4.6"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.5.3",
"node-sass": "^3.7.0",
"npm-run-all": "^2.1.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}