-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 886 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 886 Bytes
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": "url-shortener-nodejs",
"version": "1.0.0",
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=url-shortener:* nodemon start",
"test": "mocha tests/*.test.js --config .mocharc.json"
},
"description": "url shortener powered by nodejs",
"main": "./bin/www",
"keywords": [
"url",
"shotener",
"nodejs",
"mongodb"
],
"author": "wilcox, opensource",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.19.2",
"mongoose": "^5.13.20",
"morgan": "^1.10.0",
"redis": "^3.1.1",
"shortid": "^2.2.15",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^10.8.2",
"nodemon": "^2.0.20"
}
}