-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.31 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
46
47
48
49
50
{
"name": "shortener",
"version": "2.0.19",
"description": "A URL shortener service",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build:docs": "apidoc -i controllers/ -o docs",
"nodemon": "nodemon",
"dev": "npm run nodemon -- -i static",
"deploy:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"deploy:prod": "docker-compose up --build",
"postversion": "./release.sh && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/subjectrefresh/shortener.git"
},
"keywords": [
"url",
"shortener",
"mongo",
"nodejs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/subjectrefresh/shortener/issues"
},
"homepage": "https://github.com/subjectrefresh/shortener#readme",
"dependencies": {
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"mongoose": "^4.11.1",
"mongoose-shortid-nodeps": "^0.6.5",
"morgan": "^1.8.2",
"request": "^2.81.0",
"short": "^2.6.0"
},
"apidoc": {
"title": "Shortener API documentation"
},
"devDependencies": {
"apidoc": "^0.17.6",
"nodemon": "^1.11.0"
}
}