forked from Financial-Times/dotcom-tool-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
{
"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 <platforms-team.customer-products@ft.com>",
"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/node16": "^1.0.3",
"@types/jest": "^27.4.0",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"check-engines": "^1.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^4.3.8",
"jest": "^27.4.7",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"release-please": "^15.0.0",
"ts-jest": "^27.1.3",
"typescript": "~4.9.5"
},
"workspaces": [
"core/*",
"plugins/*",
"lib/*",
"types/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit",
"post-checkout": "npm run clean-up-packages -- $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/superagent": "^4.1.10"
},
"volta": {
"node": "18.16.0"
},
"engines": {
"node": "16.x || 18.x",
"npm": "7.x || 8.x || 9.x"
},
"overrides": {
"type-fest": "3.6.0"
}
}