-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "dotcom-reliability-kit",
"version": "0.0.0",
"private": true,
"description": "A well tested suite of tools designed to help FT.com applications be more reliable and measurable.",
"repository": {
"type": "git",
"url": "https://github.com/Financial-Times/dotcom-reliability-kit.git"
},
"homepage": "https://github.com/Financial-Times/dotcom-reliability-kit",
"bugs": "https://github.com/Financial-Times/dotcom-reliability-kit/issues",
"license": "MIT",
"workspaces": [
"resources/*",
"packages/*",
"test/modules/*"
],
"scripts": {
"build:logos": "npm run build -w resources/logos",
"create-package": "./scripts/create-package.js",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --project ./jsconfig.json",
"test": "npm run test:jest && npm run test:modules",
"test:jest": "jest --silent",
"test:modules": "npm run test --workspaces --if-present",
"prepare": "husky",
"postinstall": "npm run build:logos"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@financial-times/eslint-config-next": "^7.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"release-please": "^16.15.0",
"typescript": "^5.7.2"
},
"engines": {
"node": "18.x || 20.x || 22.x"
},
"volta": {
"node": "20.10.0"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier '**/*.{js,ts}' --write"
]
}
}