forked from final-form/final-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.91 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
{
"name": "final-form-ts",
"private": true,
"packageManager": "[email protected]",
"version": "1.0.14",
"scripts": {
"build-files": "yarn clean && yarn compile && yarn move-compiled",
"check": "yarn lint && yarn test",
"compile": "yarn ts-node scripts/compile.ts",
"clean": "echo \"Cleaning...\" && yarn find-dist -exec rm -rf '{}' + && yarn find-build-info -exec rm -rf '{}' + && rm -rf ./dist",
"find-dist": "find \"./packages\" -type d -name \"dist\" -maxdepth 2",
"find-build-info": "find ./packages -name \"*.tsbuildinfo\" -maxdepth 2",
"increment-version": "ts-node scripts/incrementVersion.ts",
"lint": "yarn eslint",
"move-compiled": "yarn ts-node scripts/moveCompiled.ts",
"prepare-for-publish": "yarn increment-version && yarn build-files",
"publish-all": "yarn prepare-for-publish && yarn lerna publish from-package",
"sync-remote": "yarn sync-remote:final-form && yarn sync-remote:final-form-arrays && yarn sync-remote:final-form-focus && yarn sync-remote:react-final-form && yarn sync-remote:react-final-form-arrays",
"sync-remote:final-form": "git pull final-form main --no-commit --no-ff",
"sync-remote:final-form-arrays": "git pull final-form-arrays master --no-commit --no-ff",
"sync-remote:final-form-focus": "git pull final-form-focus master --no-commit --no-ff",
"sync-remote:react-final-form": "git pull react-final-form main --no-commit --no-ff",
"sync-remote:react-final-form-arrays": "git pull react-final-form-arrays master --no-commit --no-ff",
"test": "yarn jest"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@inquirer/prompts": "^3.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.44.3",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-deep-equal": "^3.1.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lodash": "^4.17.21",
"prettier": "^3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"lerna": "^6.6.2"
},
"resolutions": {
"final-form": "file:packages/final-form",
"final-form-arrays": "file:packages/final-form-arrays",
"final-form-focus": "file:packages/final-form-focus",
"react-final-form": "file:packages/react-final-form",
"react-final-form-arrays": "file:packages/react-final-form-arrays"
}
}