forked from Sabine-Sardine/botlbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "botl",
"version": "0.0.1",
"description": "Twitter bot in a bottle",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "node_modules/.bin/webpack",
"start": "webpack-dev-server --progress --inline --hot",
"lint:": "eslint . --ext .js --ext .jsx .gitignore --cache",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieltunon/app.git"
},
"keywords": [
"twitter",
"bot",
"NLP"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sabine-Sardine/app/issues"
},
"homepage": "https://github.com/Sabine-Sardine/app#readme",
"dependencies": {
"async": "^2.0.0-rc.5",
"babel-loader": "^6.2.4",
"bluebird": "^3.3.5",
"body-parser": "^1.15.1",
"connect-redis": "^3.0.2",
"docdash": "^0.3.0",
"express-session": "^1.13.0",
"extract-text-webpack-plugin": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"jsdoc": "^3.4.0",
"knex": "^0.10.0",
"material-ui": "^0.15.0",
"moment": "^2.13.0",
"nock": "^8.0.0",
"passport": "^0.3.2",
"passport-twitter": "^1.0.4",
"pg": "^4.5.5",
"react": "^15.0.2",
"react-contenteditable": "^1.1.0",
"react-dom": "^15.0.2",
"react-popover": "^0.4.4",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-scroll": "^1.0.16",
"react-tap-event-plugin": "^1.0.0",
"redis": "^2.6.0-2",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.0.2",
"redux-thunk": "^2.0.1",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"dotenv": "^2.0.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"express": "^4.13.4",
"mocha": "^2.4.5",
"moment": "^2.13.0",
"npm-install-webpack-plugin": "^3.1.0",
"purecss": "^0.6.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"supertest": "^1.2.0",
"twit": "^2.2.4",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-merge": "^0.12.0",
"wordfilter": "^0.2.6"
}
}