forked from commercetools/commercetools-sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
{
"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 --maxWorkers=2",
"coverage": "codecov",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"postbuild": "webpack --mode=production",
"changeset:version-and-format": "changeset version && prettier --write --parser json '**/package.json'"
},
"workspaces": ["packages/*"],
"dependencies": {
"@babel/core": "7.18.5",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "7.17.12",
"@changesets/changelog-github": "0.4.5",
"@changesets/cli": "2.23.0",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@manypkg/cli": "0.19.1",
"@preconstruct/cli": "2.1.5",
"@types/jest": "28.1.3",
"@types/node": "^15.9.0",
"babel-jest": "28.1.1",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"codecov": "^3.8.3",
"husky": "^7.0.4",
"ignore-loader": "^0.1.2",
"jest": "28.1.1",
"jest-junit": "13.2.0",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "12.5.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"path-browserify": "^1.0.1",
"prettier": "2.7.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "28.0.5",
"ts-loader": "^9.2.6",
"tsc-files": "1.1.3",
"typescript": "4.7.4",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write"],
"*.ts": ["prettier --write", "tsc-files --noEmit"]
},
"preconstruct": {
"packages": ["packages/*"]
}
}