-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 KB
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "smart-chef",
"version": "1.0.0",
"description": "This is a full stack web+mobile app with a custom backend that aims to help people use their leftovers by inventorying the food they have and suggesting recipes they can make with their ingredients.",
"main": "Server.js",
"engines": {
"node": "18.12.0"
},
"scripts": {
"test": "jest ",
"start": "node build/Server.js",
"postinstall": "tsc",
"compile": "tsc && node build/Server.js",
"dev": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run compile\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.9",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.11.0",
"firebase-admin": "^11.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.10.0",
"nodejs": "^0.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.4",
"@types/superagent": "^4.1.15",
"@types/supertest": "^2.0.12",
"axios-mock-adapter": "^1.21.2",
"jest": "^29.2.0",
"mongodb-memory-server": "^8.9.3",
"nodemon": "^2.0.20",
"superagent": "^8.0.0",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}