-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
{
"name": "tdd-typescript-nodejs-mongodb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./dist node dist/app.js",
"dev": "NODE_ENV=dev nodemon -r tsconfig-paths/register src/app.ts",
"build": "tsc -p .",
"test": "NODE_ENV=test mocha --check-leaks -r ts-node/register -r tsconfig-paths/register \"src/test/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsan8/tdd-typescript-nodejs-mongodb.git"
},
"author": "Dhaouadi Hassen",
"license": "ISC",
"bugs": {
"url": "https://github.com/hsan8/tdd-typescript-nodejs-mongodb/issues"
},
"homepage": "https://github.com/hsan8/tdd-typescript-nodejs-mongodb#readme",
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"expresss": "0.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.32",
"@types/supertest": "^2.0.10",
"chai": "^4.3.3",
"mocha": "^8.3.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}