-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
71 lines (71 loc) · 2.26 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
{
"name": "commercetools-sdk-typescript",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "manypkg check && preconstruct dev",
"generate": "manypkg run generate && yarn format",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"build": "preconstruct build",
"test": "jest --runInBand",
"coverage": "codecov",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"test:unit": "yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests'",
"test:integration": "jest --testPathPattern='packages/platform-sdk/test/integration-tests'",
"postbuild": "node esbuild.cjs",
"changeset:version-and-format": "changeset version && prettier --write --parser json '**/package.json'",
"docs": "rm -rf docs;typedoc"
},
"workspaces": ["packages/*"],
"dependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@manypkg/cli": "0.22.0",
"@preconstruct/cli": "2.8.10",
"@types/jest": "29.5.14",
"@types/node": "^20.0.0",
"axios": "^1.7.7",
"babel-jest": "29.7.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"codecov": "^3.2.5",
"esbuild": "^0.24.0",
"husky": "^8.0.0",
"ignore-loader": "^0.1.2",
"jest": "29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "16.0.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "13.3.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"path-browserify": "^1.0.1",
"prettier": "3.3.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.2.6",
"tsc-files": "1.1.4",
"typedoc": "^0.26.0",
"typescript": "5.6.3",
"webpack": "^5.53.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write"],
"*.ts": ["prettier --write", "tsc-files --noEmit"]
},
"preconstruct": {
"packages": ["packages/*"]
},
"resolutions": {
"glob-parent": "5.1.2"
}
}