-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.18 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
{
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"bundle": "yarn constraints && yarn build && yarn workspaces foreach -Ap run bundle",
"clean": "rm -rf packages/*/{build,dist}",
"format": "prettier --config prettier.config.js -w .",
"format:check": "prettier --config prettier.config.js -c .",
"lint": "eslint 'packages/*/src/**/*.{tsx,ts}'",
"test": "jest",
"prepare": "husky install",
"cm": "git-cz",
"publish-if-missing": "yarn workspaces foreach -R --from 'packages/*' npm publish --tolerate-republish"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/cz-commitlint": "^17.6.7",
"@commitlint/prompt-cli": "^17.6.7",
"@microsoft/api-extractor": "^7.43.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.3.0",
"@spotify/eslint-config-base": "^15.0.0",
"@spotify/eslint-config-react": "^15.0.0",
"@spotify/eslint-config-typescript": "^15.0.0",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/prettier-config": "^15.0.0",
"@spotify/tsconfig": "^15.0.0",
"@swc/core": "^1.4.13",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@yarnpkg/types": "^4.0.0",
"commitizen": "^4.3.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"inquirer": "^8.2.5",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.1",
"jest-extended": "^4.0.0",
"prettier": "^2.8.8",
"rollup": "^4.22.4",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "[email protected]+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb"
}