-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 762 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 762 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
{
"name": "food-tracker",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"nodemon": "^1.18.10",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "tsc",
"start": "nodemon -w ./src -e ts -x \"npm run build && node ./build/index.js\""
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.3.21",
"@types/morgan": "^1.7.35",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"moment": "^2.24.0",
"mongoose": "^5.4.17",
"morgan": "^1.9.1"
}
}