-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
77 lines (77 loc) · 2.2 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
{
"private": "true",
"author": "kamleshchandnani",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=18.12.1"
},
"workspaces": {
"packages": [
"packages/blade",
"packages/eslint-plugin-blade"
],
"nohoist": [
"**"
]
},
"scripts": {
"tsc:blade": "lerna run --scope @razorpay/blade typecheck",
"lint": "eslint --ext js,jsx,ts,tsx packages && stylelint '**/*.{js,jsx,ts,tsx}'",
"publish-npm": "lerna run --scope @razorpay/blade publish-npm",
"release": "lerna run --scope @razorpay/blade generate-github-npmrc && changeset publish",
"build": "lerna run --scope @razorpay/blade build",
"postinstall": "lerna run --scope eslint-plugin-blade build"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.21.8",
"@changesets/cli": "2.24.1",
"@types/jest": "26.0.23",
"@types/react": "18.2.24",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"@typescript-eslint/utils": "5.59.6",
"chalk": "4.1.1",
"eslint": "8.40.0",
"eslint-config-kentcdodds": "18.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-mdx": "2.1.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native-a11y": "3.3.0",
"figures": "3.2.0",
"husky": "4.2.3",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"shelljs": "0.8.5",
"stylelint": "13.13.1",
"stylelint-config-recommended": "5.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "4.8.2"
},
"resolutions": {
"@types/react": "18.2.24",
"@types/styled-components": "5.1.34"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(json|js|jsx|ts|tsx)": [
"prettier --write"
]
}
}