-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "autocomplete_suggestions",
"version": "1.0.0",
"description": "This is for test",
"main": "index.js",
"repository": "https://github.com/sayedazharsabri/autocomplete_suggestions.git",
"author": "Sayed Azhar Sabri",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"start:dev": "nodemon --watch src ./src/index.ts",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest -c ./jest.unit.json",
"test:coverage": "jest --coverage -c ./jest.unit.json"
},
"dependencies": {
"express": "^4.17.3",
"express-validator": "^6.14.0",
"moment": "^2.29.1",
"mongoose": "^6.2.8",
"redis": "^4.0.4",
"supertest": "^6.2.2",
"typescript": "^4.6.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/redis": "^4.0.11",
"@types/supertest": "^2.0.12",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3"
}
}