forked from Berserk-Worms/BuckleyBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "uncle",
"version": "1.0.0",
"description": "personalized slack bots for educational institutions",
"main": "server/server.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha ./server/dist/test",
"dev:startdb": "postgres -D /usr/local/var/postgres",
"dev:buildServer": "babel ./server/src --out-dir ./server/dist --presets=es2015 --copy-files --watch",
"dev:start": "nodemon server/dist/server.js",
"dev:watchClient": "webpack --watch",
"buildClient": "webpack",
"buildServer": "babel ./server/src --out-dir ./server/dist --presets=es2015 --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Berserk-Worms/Uncle.git"
},
"keywords": [
"slack",
"bots"
],
"author": "Berserk-Worms",
"license": "MIT",
"bugs": {
"url": "https://github.com/Berserk-Worms/Uncle/issues"
},
"homepage": "https://github.com/Berserk-Worms/Uncle#readme",
"dependencies": {
"axios": "^0.13.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-preset-stage-2": "^6.13.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"botkit": "^0.2.2",
"cron": "^1.1.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-sslify": "^1.1.0",
"feedparser": "^1.1.4",
"jwt-simple": "^0.5.0",
"nodemon": "^1.10.0",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"pg": "^6.0.3",
"react": "^15.3.0",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-router-bootstrap": "^0.23.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"sequelize": "^3.23.6",
"underscore": "^1.8.3",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}