-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 919 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
37
38
{
"name": "web-assets-crawler",
"private": true,
"main": "dist/index.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"postinstall": "tsc",
"lint": "eslint src --ext ts,tsx,js,jsx --cache"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint --fix || true; git add ."
}
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"execa": "^4.0.3",
"got": "^11.7.0",
"js-beautify": "^1.13.0",
"lodash": "^4.17.20",
"prettier": "^2.1.1",
"puppeteer": "^5.2.1",
"source-map": "^0.7.3"
},
"devDependencies": {
"@textshq/eslint-config": "link:../packages/eslint-config",
"@types/bluebird": "^3.5.32",
"@types/eslint": "^7.2.2",
"@types/js-beautify": "^1.11.0",
"@types/lodash": "^4.14.161",
"@types/prettier": "^2.1.1",
"@types/puppeteer": "^3.0.1",
"eslint": "^7.5.0",
"typescript": "^3.9.7"
}
}