-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1022 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": "userserver",
"version": "1.0.0",
"description": "\"Restful service to fecth users for sapiens technical assignment\" ",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"prod": "tsc && node ./build/app.js",
"test": "npm test",
"test-dev": "nodemon --watch . --ext ts --exec \"mocha -r ts-node/register test/**/*.test.ts\""
},
"author": "kavya.kadapatti",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.11.8",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.9",
"@types/mocha": "^8.2.0",
"@types/mongoose": "^5.10.3",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
}
}