-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "lunch-bot",
"version": "1.0.0",
"description": "A bot that alerts people of their lunch duties on Friday morning",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"general": "node dist/generalAnnouncement.js",
"signup": "node dist/postSignup.js",
"presignup": "babel src --out-dir dist",
"private": "node dist/privateReminder.js",
"preprivate": "babel src --out-dir dist",
"pregeneral": "babel src --out-dir dist",
"postinstall": "mkdir -p dist && babel src --out-dir dist"
},
"babel": {
"presets": [
"es2015"
]
},
"engines": {
"node": "6.9.1"
},
"author": "Sparkbox",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"google-sheets-api": "^0.4.1",
"lodash": "^4.5.0",
"pg": "^7.4.1",
"slack-client": "^2.0.2"
},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-react": "^6.4.1"
}
}