This repository has been archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "backend",
"version": "1.0.0",
"description": "Open Calendar Backend",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon",
"start": "ts-node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tashpjak/open-calendar-backend.git"
},
"author": "tashpjak",
"license": "ISC",
"bugs": {
"url": "https://github.com/tashpjak/open-calendar-backend/issues"
},
"homepage": "https://github.com/tashpjak/open-calendar-backend#readme",
"dependencies": {
"@types/argon2": "^0.15.0",
"@types/express-rate-limit": "^5.0.0",
"@types/moment": "^2.13.0",
"@types/passport-google-oauth20": "^2.0.3",
"@types/passport-local": "^1.0.33",
"@types/sanitizer": "0.0.28",
"@types/validator": "^13.0.0",
"argon2": "^0.26.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"md5": "^2.2.1",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.16",
"passport": "^0.4.1",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"sanitizer": "^0.1.3",
"socket.io": "^2.3.0",
"unique-names-generator": "^4.2.0",
"validator": "^13.0.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/mongoose": "^5.7.21",
"@types/node": "^14.0.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}