-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 801 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 801 Bytes
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
{
"name": "server",
"version": "1.0.7",
"private": true,
"scripts": {
"start": "node index.js",
"debug": "nodemon --inspect=0.0.0.0:9229 index.js",
"lint": "eslint **/*.js -c .eslintrc.json"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"cookie-parser": "~1.4.6",
"debug": "~4.4.3",
"express": "^4.21.1",
"express-promise-router": "^4.1.1",
"lodash": "^4.17.23",
"morgan": "~1.10.0",
"pg": "^8.13.1",
"plaid": "^39.1.0",
"socket.io": "^4.8.1"
},
"type": "commonjs",
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"prettier": "^3.4.2"
}
}