-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"csrf": "^3.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"mongo-sanitize": "^1.1.0",
"mongoose": "^6.12.5",
"ts-node": "^10.9.1",
"zod": "^3.19.1"
},
"name": "coffe-shop",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --files api/index.ts",
"start": "ts-node --files api/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongo-sanitize": "^1.0.1"
}
}