forked from bangle-io/banger-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.12 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
{
"name": "bangle.dev",
"version": "0.28.5",
"homepage": "https://bangle.dev",
"authors": [
{
"name": "Kushan Joshi",
"email": "[email protected]",
"web": "http://github.com/kepta"
}
],
"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"
},
"private": true,
"workspaces": [
"tooling/*",
"components/*",
"lib/*"
],
"scripts": {
"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 e2e-tests && yarn unit-tests",
"unit-tests": "yarn jest",
"e2e-tests": "yarn e2e:test",
"lint": "yarn node tooling/bangle-scripts/check-dependencies.js && yarn prettier --check . && EsLintCycle=yes yarn eslint .",
"release-packages": "yarn tsc-clean && yarn tsc-check && yarn workspaces foreach -pt --all --no-private npm publish",
"release-packages-alpha": "yarn tsc-clean && yarn tsc-check && yarn workspaces foreach -pt --all --no-private npm publish --tag alpha",
"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.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@bangle.dev/jest-utils": "workspace:*",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@yarnpkg/pnpify": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "^4.3.5",
"jest": "^27.0.4",
"jest-circus": "^27.0.4",
"jest-puppeteer": "^5.0.4",
"lint-staged": "^10.5.3",
"prettier": "^2.3.2",
"puppeteer": "^10.0.0",
"typescript": "^4.3.5"
},
"packageManager": "[email protected]",
"type": "module"
}