-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 957 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
{
"name": "city-finder-node",
"version": "1.0.0",
"description": "Autocomplete service for cities around the world",
"main": "dist/index.js",
"scripts": {
"start": "nodemon src --exec babel-node --presets es2015",
"build": "babel src -d dist --presets es2015",
"serve": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kagansari/city-finder-node.git"
},
"author": "Kagan Sari",
"license": "ISC",
"bugs": {
"url": "https://github.com/kagansari/city-finder-node/issues"
},
"homepage": "https://github.com/kagansari/city-finder-node#readme",
"dependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.3",
"mongoose": "^4.11.4",
"slug": "^0.9.1"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}