-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
52
53
54
55
56
57
58
59
{
"name": "node-web-crawler",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"format": "prettier --write '{scripts,src}/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint 'src/**/*.ts' --max-warnings 0",
"transpile": "tsc",
"test": "jest",
"test:coverage": "CI=true jest --coverage"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test:coverage"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write --prose-wrap always"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "react"
}
},
"dependencies": {
"@types/uuid": "^8.3.1",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"jsdom": "^16.4.0",
"node-fetch": "^2.6.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^4.3.0",
"import-sort-style-react": "^5.1.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "^0.0.7",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}