-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
73
{
"name": "dotcom-tool-kit-monorepo",
"private": true,
"version": "1.9.0",
"scripts": {
"lint": "eslint --ext .ts,.js core plugins lib",
"prettier": "prettier --write '**/*.{ts,js,json}'",
"create-plugin": "./scripts/create-plugin.js",
"clean-up-packages": "./scripts/clean-up-packages.sh",
"build": "tsc --build --verbose tsconfig.json",
"watch": "tsc --build --watch --verbose tsconfig.json",
"test": "jest --silent --runInBand",
"preinstall": "[ \"$INIT_CWD\" != \"$PWD\" ] || npm_config_yes=true npx check-engine"
},
"lint-staged": {
"**/*.{ts,js,json}": "prettier --write",
"**/*.{ts,js}": "eslint --fix"
},
"keywords": [],
"author": "FT.com Platforms Team <[email protected]>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@dotcom-reliability-kit/eslint-config": "^2.0.0",
"@financial-times/eslint-config-next": "^6.0.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^27.4.0",
"@types/node": "^18.19.55",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"check-engines": "^1.5.0",
"endent": "^2.1.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"release-please": "^15.0.0",
"ts-jest": "^29.2.5",
"typescript": "~5.4.5",
"winston": "^3.13.0",
"zod2md": "^0.1.2"
},
"workspaces": [
"core/*",
"plugins/*",
"lib/*",
"types/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "./scripts/generate-and-commit-docs.sh",
"commit-msg": "commitlint --edit",
"post-checkout": "npm run clean-up-packages -- $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/superagent": "^4.1.10"
},
"volta": {
"node": "22.12.0"
},
"engines": {
"node": "18.x || 20.x || 22.x"
},
"overrides": {
"type-fest": "3.6.0"
}
}