-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 960 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 960 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
36
37
38
{
"name": "tinyapp-project",
"version": "1.0.0",
"description": "The app will allow users to shorten long URLs much like TinyURL.com and bit.ly",
"main": "index.js",
"scripts": {
"start": "node express_server.js",
"local": "./node_modules/.bin/nodemon -e js express_server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serhii12/TinyApp-Project.git"
},
"keywords": [
"node",
"nodejs",
"express",
"js"
],
"author": "Serhii Panchyshyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/serhii12/TinyApp-Project/issues"
},
"homepage": "https://github.com/serhii12/TinyApp-Project#readme",
"dependencies": {
"bcrypt": "2.0.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"method-override": "^3.0.0"
},
"devDependencies": {
"nodemon": "^1.18.5"
}
}