-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@semrush/purr",
"version": "3.15.8",
"description": "",
"main": "src/cli.cjs",
"scripts": {
"prettier": "prettier -c 'data/*'",
"test": "jest --coverage",
"test:watch": "jest --detectOpenHandles --watch --coverage=false",
"test:watch-all": "jest --detectOpenHandles --watchAll",
"commitlint": "commitlint --from=HEAD~1",
"lint": "npm run lint:js && npm run commitlint",
"lint:js": "eslint --max-warnings 0 --ext .js,.jsx src",
"lint:fix": "npm run lint:js --fix",
"pre-commit": "npm run lint && npm run test -- --silent --verbose false"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=21.7.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/nunjucks": "^3.2.6",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^9.0.7",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@sentry/node": "^7.93.0",
"bull": "^4.12.1",
"commander": "^11.1.0",
"express": "^4.18.2",
"glob": "^10.3.10",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"lighthouse": "^12.0.0",
"lodash.filter": "^4.6.0",
"lodash.has": "^4.5.2",
"lodash.isempty": "^4.4.0",
"lodash.isundefined": "^3.0.1",
"morgan": "^1.10.0",
"node-fetch": "^2.7.0",
"nodemon": "^3.0.3",
"nunjucks": "^3.2.4",
"prom-client": "^15.1.0",
"puppeteer": "^22.10.0",
"puppeteer-har": "^1.1.2",
"serve-favicon": "^2.5.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}