-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "telegram-todayilearned-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"build": "npm run test && babel src --out-dir build",
"dev": "npm run test && PORT=3000 babel-node src/index.js",
"lint": "eslint src test",
"test": "npm run lint && mocha test/**/*.js --compilers js:babel-register --timeout 5000"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.10.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-1": "6.5.0",
"babel-register": "6.9.0",
"chai": "3.5.0",
"eslint": "3.0.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.10.2",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"mocha": "2.5.3"
},
"dependencies": {
"express": "4.14.0",
"node-telegram-bot-api": "0.23.3",
"ramda": "^0.21.0",
"ramda-fantasy": "^0.6.0",
"snoowrap": "^1.4.1"
}
}