-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "telebot2",
"version": "0.0.1",
"description": "Bot interface for Telegram messaging application",
"keywords": [
"telegram",
"telegram bot",
"chat bot"
],
"bugs": "https://github.com/jpenna/telebot2/issues",
"main": "server/server.js",
"engines": {
"node": "^6.9.2"
},
"scripts": {
"start": "export NODE_ENV=dev || SET \"NODE_ENV=dev\" && node server/server.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha ./server/tests/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'",
"build": "webpack",
"build-min": "webpack -p",
"sass": "sass --watch public/styles/sass:public/styles/css"
},
"author": "Juliano Penna <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jpenna/telebot2.git"
},
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.16.0",
"botgram": "^2.0.0-beta2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"lodash": "^4.17.4",
"mongoose": "^4.7.7",
"socket.io": "^1.7.2"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"supertest": "^2.0.1",
"webpack": "^1.14.0"
}
}