-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "mobx-root",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"jest": "^29.5.0",
"typescript": "^5.6.2",
"recast": "^0.23.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx.git"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint packages/*/src/**/* --ext .js,.ts,.tsx",
"prettier": "prettier --write **/*.{js,ts,md}",
"release": "yarn lerna run prepublishOnly && yarn changeset publish",
"mobx": "yarn workspace mobx",
"mobx-react": "yarn workspace mobx-react",
"mobx-react-lite": "yarn workspace mobx-react-lite",
"mobx-undecorate": "yarn workspace mobx-undecorate",
"eslint-plugin-mobx": "yarn workspace eslint-plugin-mobx",
"docs:build": "yarn --cwd website build",
"docs:start": "yarn --cwd website start",
"docs:publish": "yarn --cwd website publish-gh-pages",
"prepare": "yarn dedup && yarn --cwd website install",
"dedup": "npx yarn-deduplicate --strategy fewer yarn.lock"
},
"devDependencies": {
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.11.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "^26.0.15",
"@types/node": "18",
"@types/prop-types": "^15.5.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"execa": "^4.1.0",
"fs-extra": "9.0.1",
"husky": "^4.2.5",
"import-size": "^1.0.2",
"iterall": "^1.3.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-console": "^1.0.1",
"lerna": "^3.22.1",
"lint-staged": "^10.1.7",
"lodash": "^4.17.4",
"minimist": "^1.2.5",
"mkdirp": "1.0.4",
"prettier": "^2.8.4",
"pretty-quick": "3.1.0",
"prop-types": "15.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"serializr": "^2.0.3",
"tape": "^5.0.1",
"ts-jest": "^29.0.5",
"tsdx": "^0.14.1",
"typescript": "^5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}