-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "lambda-twitter-bot",
"version": "0.0.0",
"description": "This is an example to create an AWS Lambda application with Babel-based ES2015",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/*; exit 0",
"watch": "babel ./src/ --watch -d ./dist/ --source-maps inline",
"local-run": "node lambdaDriver.js",
"build:babel": "babel ./src/ -d ./dist/",
"build:zip": "zip -r ./app.zip ./dist/ ./node_modules/ .env",
"build": "npm run build:babel && npm run build:zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkusu/lambda-twitter-bot.git"
},
"keywords": [],
"author": "hkusu <kusu0806@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hkusu/lambda-twitter-bot/issues"
},
"homepage": "https://github.com/hkusu/lambda-twitter-bot#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015-node4": "^2.1.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^11.2.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0"
},
"dependencies": {
"axios": "^0.14.0",
"dotenv": "^2.0.0",
"moment": "^2.15.1",
"twit": "^2.2.5"
}
}