-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "hacktoberfest-backend",
"version": "2.0.0",
"main": "dist/app.js",
"repository": "[email protected]:SnapITSolutions/hacktoberfest-backend.git",
"author": "SnapIT Solutions",
"type": "module",
"license": "GPL-3.0",
"scripts": {
"start": "node ./dist/app.js"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.4.1",
"@types/pg": "^8.6.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"typescript": "^4.3.5"
},
"dependencies": {
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"got": "^12.0.0-beta.1",
"js-yaml": "^4.1.0",
"log4js": "^6.3.0",
"pg": "^8.6.0",
"uuid": "^8.3.2"
}
}