-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 971 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
{
"name": "calorie-counter",
"version": "0.0.1",
"description": "Backend | Count the number of calories in a meal",
"main": "dist/app.js",
"repository": "git@github.com:elishaking/calorie-counter.git",
"author": "King Elisha <ek.chibueze@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node .",
"start:dev": "nodemon src/app.ts",
"build": "rm -rf dist && tsc -p .",
"test": "jest",
"extract": "ts-node src/data/extract-data.ts"
},
"dependencies": {
"csv-parser": "^2.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.0.0",
"mongoosastic": "^4.6.0",
"mongoose": "^5.9.27"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/helmet": "^0.0.47",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.0.27",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}