-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
131 lines (131 loc) · 3.77 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"scripts": {
"bundlewatch": "bundlewatch",
"benchmark": "TS_NODE_PROJECT=benchmarks/tsconfig.json node -r ts-node/register benchmarks/benchmark.ts",
"build": "tsc -b .",
"build:watch": "tsc -b . --watch",
"docs:start": "lerna run start --scope @byteclaw/visage-docs",
"compile": "lerna run bundle --ignore @byteclaw/visage-docs --ignore @byteclaw/type-tests",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint \"packages/**/src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"packages/**/src/**/*.{ts,tsx}\"",
"lint-staged": "lint-staged",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --runInBand"
},
"dependencies": {
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"react-range": "^1.6.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"resolutions": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@types/react": "16.9.32",
"@types/react-dom": "16.9.6",
"eslint-plugin-react-hooks": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.19",
"@types/pegjs": "^0.10.1",
"@types/react-is": "^16.7.1",
"all-contributors-cli": "^6.19.0",
"benny": "^3.6.15",
"bundlewatch": "^0.3.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"globby": "^11.0.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"pegjs": "~0.10.0",
"prettier": "^2.2.1",
"react-is": "^16.12.0",
"react-test-renderer": "^16.12.0",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"ts-pegjs": "^0.2.7",
"typescript": "^3.7.3"
},
"bundlewatch": {
"files": [
{
"path": "./packages/visage/dist/byteclaw.visage.esm.js",
"maxSize": "100 kB"
},
{
"path": "./packages/visage/dist/byteclaw.visage.cjs.production.min.js",
"maxSize": "100 kB"
},
{
"path": "./packages/visage-core/dist/byteclaw.visage.core.esm.js",
"maxSize": "15 kB"
},
{
"path": "./packages/visage-core/dist/byteclaw.visage.core.cjs.production.min.js",
"maxSize": "15 kB"
},
{
"path": "./packages/visage-themes/dist/byteclaw.visage.themes.esm.js",
"maxSize": "10 kB"
},
{
"path": "./packages/visage-themes/dist/byteclaw.visage.themes.cjs.production.min.js",
"maxSize": "10 kB"
},
{
"path": "./packages/visage-utils/dist/byteclaw.visage.utils.esm.js",
"maxSize": "5 kB"
},
{
"path": "./packages/visage-utils/dist/byteclaw.visage.utils.cjs.production.min.js",
"maxSize": "5 kB"
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.json": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.mdx": [
"prettier --write",
"git add"
]
},
"workspaces": {
"packages": [
"packages/*"
]
}
}