-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 KB
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
74
75
{
"name": "typescript-dev-utilities",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"license": "ISC",
"private": true,
"packageManager": "yarn@4.9.1",
"dependencies": {
"@babel/core": "7.28.4",
"@babel/preset-env": "7.28.3",
"@babel/preset-typescript": "7.27.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "^9.27.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.4.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/lodash.flatten": "^4.4.9",
"@types/node": "^22.15.17",
"@types/yargs": "^17.0.33",
"babel-jest": "^29.7.0",
"bluebird": "^3.7.2",
"eslint": "^9.27.0",
"globals": "^16.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "12.5.0",
"mz": "^2.7.0",
"pkg-up": "^5.0.0",
"prettier": "^3.3.2",
"tmp": "^0.2.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^4.6.2",
"typescript-eslint": "^8.32.1"
},
"workspaces": ["packages/*"],
"author": {
"name": "Chukwuemeka Ajima",
"email": "chukwuemeka.ajima@commercetools.com"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "npx tslint"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"build": "yarn workspaces foreach --all run build",
"test": "yarn workspaces foreach --all run test",
"test:pkg": "jest --config jest.config.js --runInBand",
"format": "prettier . --check",
"format:fix": "prettier . --write '**/*.{js,ts,json,md}'",
"changeset:version-and-format": "changeset version && prettier --write --parser json '**/package.json'",
"link": "yarn workspaces foreach --all run link:pkg",
"lint:fix": "eslint **/*.ts --fix",
"lint": "eslint \"**/*.ts\"",
"typecheck": "tsc"
},
"devDependencies": {
"@types/bluebird": "^3",
"@types/mz": "^2",
"@types/tmp": "^0"
}
}