-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "axtartapmain",
"version": "1.0.0",
"description": "AxtarTap Backend",
"main": "index.js",
"scripts": {
"server": "nodemon",
"test": "ts-node ./src/tests/index.test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AxtarTap/AxtarTapMain.git"
},
"author": "AxtarTap",
"license": "MIT",
"bugs": {
"url": "https://github.com/AxtarTap/AxtarTapMain/issues"
},
"homepage": "https://github.com/AxtarTap/AxtarTapMain#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/connect-flash": "^0.0.40",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.10.4",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth2": "^0.1.8",
"@types/uuid": "^9.0.7",
"nodemon": "^3.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^8.0.3",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}