-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "harvest-hub",
"private": "true",
"version": "0.0.1",
"description": "Harvest Hub Backend",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config .eslintrc.js \"./src/**/*.js\"",
"start": "node src/app.js",
"dev": "LOG_LEVEL=debug nodemon ./src/server.js --watch src",
"debug": "LOG_LEVEL=debug nodemon --inspect=0.0.0.0:9229 ./src/server.js --watch src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-Gambler/harvest-hub"
},
"keywords": [],
"author": [
{
"name": "Nathan Romero",
"url": "https://github.com/Nathan-Romero"
},
{
"name": "Layal Singh",
"url": "https://github.com/LalaSmack"
},
{
"name": "Steven David Pillay",
"url": "https://github.com/code-Gambler"
}
],
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"prettier": "3.3.3"
},
"dependencies": {
"@netlify/functions": "^2.8.1",
"@types/express": "^4.17.21",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-handlebars": "^7.1.3",
"helmet": "^7.1.0",
"mongoose": "^8.5.2",
"pino": "^9.3.2",
"pino-http": "^10.2.0",
"pino-pretty": "^11.2.2",
"serverless-http": "^3.2.0",
"stoppable": "^1.1.0",
"strip-js": "^1.2.0"
}
}