-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "mockizen",
"version": "1.0.0",
"description": "Mock Server",
"repository": "https://github.com/NazmiAltun/mockizen",
"author": "Nazmi Altun <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts --exit",
"coverage": "nyc yarn run test",
"lint": "tsc --noEmit && eslint --fix \"**\"",
"build": "tsc --project tsconfig.prod.json"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.18",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.12",
"@types/http-terminator": "^2.0.1",
"@types/memory-cache": "^0.2.2",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"memory-cache": "^0.2.0",
"morgan": "^1.10.0",
"nocache": "^3.0.4",
"testokur-utils": "^1.3.0",
"tslib": "^2.4.1"
}
}