-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
36 lines (36 loc) · 958 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": "testing-challenge",
"version": "1.0.0",
"description": "",
"main": "./dist/src/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watchAll",
"start": "npm run format && npm run lint && tsc && node ./dist/index.js",
"format": "prettier --write \"**/*.+(js|json|ts)\"",
"lint": "eslint .",
"format:validate": "npm run format && npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/node-fetch": "^2.5.10",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"faker": "^5.5.3",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"joi": "^17.4.0",
"node-fetch": "^2.6.1"
}
}