-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "ofada-squad",
"version": "1.0.0",
"description": "A slack bot that helps order food",
"main": "./build/start.js",
"scripts": {
"start": "NODE_ENV=production node build/start.js",
"dev": "nodemon src/start.js --exec babel-node",
"build": "rm -rf ./build/ && babel src --out-dir build/ --copy-files",
"empty": "node ./src/data/seedDatabase.js --delete",
"sample": "node ./src/data/seedDatabase.js"
},
"engines": {
"node": "8.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/ajibs/ofada-squad.git"
},
"author": "Bolu Ajibawo <bolu.ajibawo@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ajibs/ofada-squad#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"mongoose": "^5.0.9",
"request": "^2.83.0",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"nodemon": "^1.17.1"
}
}