-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@collabo-community/api-server",
"version": "0.0.0",
"description": "Backend API server for the Collabo Community App and any other apps or libraries built at Collabo Community",
"main": "@server/server.ts",
"scripts": {
"dev:api:atlas": "nodemon --exec ts-node @server/server.ts",
"dev:api:local": "nodemon --exec ts-node @server/server.ts",
"lint": "esw --ext .ts --color",
"lint:watch": "npm run lint -- --watch"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-expand": "^11.0.6",
"ejs": "^3.1.10",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-ejs-layouts": "^2.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.0.5",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.1",
"@types/passport": "^1.0.16",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chalk": "^4.1.0",
"eslint": "^8.39.0",
"eslint-watch": "^8.0.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"homepage": "https://github.com/collabo-community/api-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/collabo-community/api-server.git"
},
"bugs": {
"url": "https://github.com/collabo-community/issue-tickets-ready-for-fixing/issues"
},
"author": "Collabo Community",
"license": "AGPL v3.0",
"contributors": [
"Find list of contributors in project README: https://github.com/collabo-community/api-server?tab=readme-ov-file#contributors"
]
}