-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1023 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
33
34
35
{
"name": "bus",
"version": "1.0.0",
"description": "Bus for writing to file system, sending mail and sms, listening to mail, sms",
"main": "index.js",
"scripts": {
"serve": "NODE_ENV=develop nodemon src/index.js --watch src --exec babel-node",
"build": "babel -d ./dist ./src",
"prebuild": "rm -rf dist/*",
"start": "NODE_ENV=production node ./dist/index.js",
"prestart": "yarn build"
},
"repository": "[email protected]:bardrotzer/bus.git",
"author": "Bård Røtzer <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"lodash": "^4.17.11",
"mailgun-js": "^0.22.0",
"messagebird": "^2.4.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"babel-plugin-module-resolver": "^3.2.0",
"dotenv": "^7.0.0",
"nodemon": "^1.18.11"
}
}