-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "jogging-tracker",
"version": "1.0.0",
"description": "jogging tracker is a RESTful API app made to track jogging times.",
"main": "src/server.ts",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/server.js",
"build": "tsc",
"dev": "cross-env NODE_ENV=development nodemon --files src/server.ts",
"lint": "eslint ./src . --ext .ts",
"lint-fix": "eslint ./src . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IslamGoher/jogging-tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IslamGoher/jogging-tracker/issues"
},
"homepage": "https://github.com/IslamGoher/jogging-tracker#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.12",
"@types/pg": "^8.6.4",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}