-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 773 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 773 Bytes
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
{
"name": "unit-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node dist/index.js",
"build": "tsc -p .",
"dev": "NODE_ENV=dev nodemon -r tsconfig-paths/register src/app.ts",
"test": "NODE_ENV=test mocha --check-leaks -r tsconfig-paths/register --reporter mochawesome --require mochawesome/register -r ts-node/register \"src/test/**/*.spec.ts\""
},
"author": "Matej Baša",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"mochawesome": "^6.2.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
}
}