-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "yarn workspace @razorpay/i18nify-js run format && yarn workspace @razorpay/i18nify-react run format",
"validate": "yarn workspace @razorpay/i18nify-js run validate && yarn workspace @razorpay/i18nify-react run validate",
"lint-staged": "lint-staged -c .lintstagedrc.json",
"release": "node ./scripts/generateGitHubRegistryNpmrc.js && changeset publish",
"publish-npm": "node ./scripts/publishToNpm.js",
"prepare": "husky install",
"build-js": "yarn workspace @razorpay/i18nify-js run build",
"build-react": "yarn build-js && yarn workspace @razorpay/i18nify-react run build",
"validate-i18nify-data": "ts-node scripts/dataValidate.ts"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"ajv": "^8.12.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"execa": "5.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}