-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 815 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 815 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": "checkin-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"dev": "tsc-watch --onSuccess 'node ./build/index.js'"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"googleapis": "^108.0.0",
"helmet": "^4.1.1",
"mongodb": "^4.10.0",
"winston": "^3.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3"
}
}