-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 KB
/
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
37
38
39
40
41
42
43
{
"name": "food_app_backend",
"version": "1.0.0",
"description": "food app backend",
"main": "index.js",
"scripts": {
"dev": "ts-node ./src/app.ts",
"test": "mocha --require ts-node/register --watch-extensions ts 'test/**/*.spec.ts' --timeout 5000"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.17.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.29",
"@types/mongoose-paginate-v2": "^1.3.9",
"@types/redis": "^2.8.25",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.0.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/faker": "^5.1.5",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"express-validators": "^1.0.4",
"faker": "^5.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.21",
"mongoose-paginate-v2": "^1.3.13",
"redis": "^3.0.2"
}
}