-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 883 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": "workspace",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon build/app.js",
"dev": "nodemon -r tsconfig-paths/register src/app.ts",
"build": "tsc -P .",
"test": "mocha -r ts-node/register \"src/test/**/*.ts\"",
"coverage": "nyc npm run test "
},
"keywords": [],
"author": "gayathri",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^6.7.0",
"pm2": "^5.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/express": "^4.17.14",
"@types/mocha": "^10.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.9" ,
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}