-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 KB
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": "@mmmbacon/tinyapp",
"version": "1.0.0",
"description": "A tiny URL Application",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node express_server.js",
"dbreset" : "psql tinyapp -h localhost -d tinyapp-development -f db/schema/01_users_urls.sql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmmbacon/tinyapp.git"
},
"keywords": [
"tiny",
"url",
"shortener",
"app"
],
"author": "@mmmbacon",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmmbacon/tinyapp/issues"
},
"homepage": "https://github.com/mmmbacon/tinyapp#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap-icons": "^1.4.1",
"cookie-session": "^1.4.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-session": "^1.17.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.6.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.29.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
}
}