forked from dartmouth-cs52/slackattack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 910 Bytes
/
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
{
"name": "whipserbot",
"version": "1.0.0",
"description": "whisperbot - anonymous posting slackbot",
"author": "Adam Rinehouse",
"main": "app/server.js",
"scripts": {
"wakeup": "curl http://cs52-whisperbot.herokuapp.com",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app/server.js --exec babel-node",
"start": "babel-node app/server.js",
"build": "babel app -d dist",
"prod": "npm run build; node dist/server.js"
},"license": "ISC",
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"botkit": "^0.4.9"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"nodemon": "^1.9.2"
}
}