-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
109 lines (109 loc) · 3.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "bangle.dev",
"version": "0.32.1",
"homepage": "https://bangle.dev",
"authors": [
{
"name": "Kushan Joshi",
"email": "[email protected]",
"web": "http://github.com/kepta"
}
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bangle-io/bangle.dev.git"
},
"bugs": {
"url": "https://github.com/bangle-io/bangle.dev/issues"
},
"workspaces": [
"tooling/*",
"components/*",
"lib/*"
],
"scripts": {
"g:build": "yarn node build.js",
"build": "yarn g:build",
"g:babel": "yarn babel $INIT_CWD --out-dir $INIT_CWD/dist --ignore \"$INIT_CWD/**/__tests__,$INIT_CWD/dist\"",
"update-versions": "yarn constraints --fix",
"test": "yarn lint && yarn g:e2e && yarn unit-tests",
"unit-tests": "yarn jest",
"lint": "yarn node tooling/bangle-scripts/check-dependencies.cjs && yarn prettier --check . && EsLintCycle=yes yarn eslint .",
"release-packages": "yarn tsc-check && yarn g:build && yarn workspaces foreach -pt --all -v --no-private npm publish --otp $OTP",
"release-packages-alpha": "yarn tsc-check && yarn g:build && yarn workspaces foreach -pt --all -v --no-private npm publish --tag alpha --otp $OTP",
"update-ts-references": "yarn node tooling/bangle-scripts/ts-references.js",
"tsc-check": "yarn tsc -b",
"tsc-clean": "yarn tsc -b --clean",
"tsc-watch": "yarn tsc-clean && yarn tsc -b -w",
"g:tsc": "yarn tsc"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent",
"arrowParens": "always"
},
"lint-staged": {
"*.js": [
"yarn eslint",
"yarn prettier --write"
],
"*.ts": [
"yarn eslint",
"yarn prettier --write"
],
"*.tsx": [
"yarn eslint",
"yarn prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "./tooling/bangle-scripts/pre-push.sh $HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@bangle.dev/jest-utils": "workspace:*",
"@types/jest": "^29.5.3",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@yarnpkg/pnpify": "4.0.0-rc.48",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"buildtool-bangle": "0.0.1",
"eslint": "^7.28.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^4.3.5",
"jest": "^29.6.1",
"jest-circus": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^10.5.3",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"resolutions": {
"orderedmap": "^1.1.8"
}
}