-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "ereports-api",
"version": "1.0.0",
"description": "Express API that manages access to ereports-postgres",
"main": "src/index.js",
"scripts": {
"start": "env $(cat .env | grep -v \"#\" | xargs) node ./src/index",
"dev": "env $(cat .env | grep -v \"#\" | xargs) nodemon ./src/index",
"test": "jest",
"lint": "eslint . --fix",
"prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSG-UPC/events-cache.git"
},
"author": "Nil Quera",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DSG-UPC/events-cache/issues"
},
"homepage": "https://github.com/DSG-UPC/events-cache#readme",
"dependencies": {
"body-parser": "^1.19.0",
"ethers": "^5.0.24",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.17",
"pg": "^8.5.1"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1"
}
}