-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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": "diploma-thesis-stergios-nanos-backend",
"version": "1.0.0",
"description": "The backend part of the Developer's profile application",
"main": "dist/app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.ts,.tsx .",
"build": "npx tsc --build --force",
"start_old": "node dist/app.js",
"start_dev": "pm2-runtime start ecosystem.config.cjs",
"start": "pm2-runtime start ecosystem.config.cjs --env production",
"serve": "nodemon --delay 2.5",
"smee": "smee --path /api/github/webhooks -u https://smee.io/2bRIdLFlHwinidb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AuthEceSoftEng/Diploma-Thesis-Stergios-Nanos-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AuthEceSoftEng/Diploma-Thesis-Stergios-Nanos-backend/issues"
},
"homepage": "https://github.com/AuthEceSoftEng/Diploma-Thesis-Stergios-Nanos-backend#readme",
"dependencies": {
"@octokit/graphql": "^5.0.1",
"@octokit/plugin-paginate-graphql": "^2.0.1",
"@octokit/plugin-request-log": "^1.0.4",
"@octokit/plugin-retry": "^4.0.4",
"bree": "^9.0.1",
"cabin": "^9.1.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.2",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"helmet": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "4.13",
"node-fetch": "^3.2.6",
"octokit": "^2.0.7",
"pm2": "^5.2.2",
"validator": "^13.7.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.0.0",
"@types/safe-timers": "^1.1.0",
"@types/validator": "^13.7.6",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.18",
"object-sizeof": "^1.6.3",
"typescript": "^4.7.2"
}
}