-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "project-timer",
"version": "1.0.0",
"description": "\"This app is a server-side project which creates timers designed to record hours worked on a project.\"",
"main": "server.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"moment": "^2.19.1",
"mongoose": "^4.13.5",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "3.0.1",
"faker": "4.1.0"
},
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alodahl/project-timer.git"
},
"author": "Alina",
"license": "ISC",
"bugs": {
"url": "https://github.com/alodahl/project-timer/issues"
},
"homepage": "https://github.com/alodahl/project-timer#readme"
}