-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 876 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
{
"name": "hello-mongoose",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc -w ",
"start": "nodemon dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvda/swabe-01.git"
},
"author": "ctrl@hey.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/bvda/swabe-01/issues"
},
"homepage": "https://github.com/bvda/swabe-01#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"eslint": "^8.9.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"prettier": "^2.5.1"
}
}