forked from dartmouth-cs52/slackattack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 869 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
31
32
{
"name": "slackattack",
"version": "1.0.0",
"description": "lcbot",
"author": "Larissa Chen",
"main": "app/server.js",
"scripts": {
"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.2.2",
"googlemaps": "^1.6.0",
"yelp": "^1.0.1"
},
"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"
}
}