-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 743 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
{
"name": "functions",
"scripts": {
"lint": "eslint --fix --ext .js,.ts .",
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node lib/index.js"
},
"main": "lib/index.js",
"dependencies": {
"cors": "latest",
"dotenv": "^8.2.0",
"express": "^4.18.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.18"
},
"devDependencies": {
"@types/cors": "latest",
"@types/express": "^4.17.13",
"@types/mongodb": "latest",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.0",
"ts-node": "^10.8.2",
"typescript": "^3.8.0"
},
"private": true
}