-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 961 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
37
{
"name": "hello-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./build node build/app.js",
"build": "tsc -p .",
"start:dev": "nodemon app.ts",
"test": "NODE_ENV=test TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts' --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0"
}
}