-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 KB
/
package.json
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": "backend",
"version": "0.1.0",
"description": "Beer catalog with user authentication, admin role, comments and adding/editing beers.",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"start:dev": "tsnd index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agencik007/beer-catalog-backend.git"
},
"keywords": [
"beer",
"catalog",
"ratings",
"comments"
],
"author": "Karol Jasnoch",
"license": "ISC",
"bugs": {
"url": "https://github.com/agencik007/beer-catalog-backend/issues"
},
"homepage": "https://github.com/agencik007/beer-catalog-backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}