forked from razorpay/blade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
{
"private": "true",
"author": "kamleshchandnani",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=14.19.0"
},
"workspaces": {
"packages": [
"packages/blade",
"packages/blade-old",
"packages/tools/*",
"packages/types"
],
"nohoist": [
"**"
]
},
"scripts": {
"tsc:blade": "yarn workspace @razorpay/blade typecheck",
"lint": "eslint --ext js,jsx,ts,tsx packages",
"release": "changeset publish",
"preinstall": "git config --global url.\"https://github.com/\".insteadOf git://github.com/",
"build": "lerna run --scope @razorpay/blade build"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "2.24.1",
"@types/jest": "26.0.23",
"@types/react": "17.0.4",
"@types/react-native": "0.64.4",
"@types/styled-components": "5.1.25",
"@types/styled-components-react-native": "5.1.3",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"chalk": "4.1.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.25.0",
"eslint-config-kentcdodds": "18.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "3.1.3",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-mdx": "1.16.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native-a11y": "3.2.1",
"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.6.3"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged && yarn tsc:blade"
}
},
"lint-staged": {
"*.(js|jsx|ts|tsx)": [
"eslint",
"stylelint"
],
"*.(json|js|jsx|ts|tsx)": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": true
}
}
}