-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1002 Bytes
/
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
{
"name": "sql-rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ts-node-dev src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"keywords": [],
"author": "",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"google-storage": "0.0.2",
"googleapis": "^92.0.0",
"mime-types": "^2.1.34",
"multer": "^1.4.4",
"nodejs-health-checker": "^1.4.6",
"pg": "^8.7.1",
"request": "^2.88.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"nodemon": "^2.0.12",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
}
}