-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 965 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
{
"name": "property-buddy",
"version": "1.0.0",
"description": "\"My first time playing with node in earnest.\"",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "nodemon lib/index.js --exec babel-node --presets es2015,stage-2",
"build": "babel lib -d dist --presets es2015,stage-2",
"serve": "node dist/index.js",
"debug": "nodemon lib/index.js --exec babel-node --presets es2015,stage-2 --inspect-brk"
},
"author": "wadejensen",
"license": "Apache-2.0",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"es6-promisify": "^5.0.0",
"express": "^4.16.2",
"http-server": "^0.10.0",
"mongoose": "^5.0.0-rc0",
"node-fetch": "^1.7.3",
"nodemon": "^1.12.5",
"request-promise": "^4.2.2",
"xml2js": "^0.4.19"
}
}