-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.75 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
{
"name": "boring-router-packages",
"description": "A type-safe MobX router with parallel routing support.",
"private": true,
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"repository": {
"type": "git",
"url": "https://github.com/mufancom/boring-router.git"
},
"scripts": {
"publish-doc": "NODE_OPTIONS=--openssl-legacy-provider docz build && gh-pages -d .docz/dist",
"link-global": "yarn workspace boring-router link && yarn workspace boring-router-react link",
"unlink-global": "yarn workspace boring-router unlink && yarn workspace boring-router-react unlink",
"lerna:publish": "lerna publish patch --registry=https://registry.npmjs.org",
"build": "rimraf packages/*/bld && tsc --build",
"lint": "run-in-every eslint-project --parallel --echo -- eslint --config {configFileName} --no-error-on-unmatched-pattern .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint && yarn workspace boring-router test"
},
"workspaces": [
"packages/boring-router",
"packages/boring-router-react",
"packages/examples/basic",
"packages/examples/lifecycle-hooks",
"packages/examples/parallel-routes",
"packages/examples/route-content"
],
"devDependencies": {
"@emotion/core": "10",
"@mufan/code": "^0.2.16",
"@mufan/eslint-plugin": "^0.1.77",
"docz": "^2.4.0",
"eslint": "^8.34.0",
"gatsby-plugin-catch-links": "^5.6.0",
"gh-pages": "^5.0.0",
"lerna": "^6.4.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"run-in-every": "^0.2.0",
"typescript": "^4.9.5"
},
"resolutions": {
"get-pkg-repo": "4.1.1",
"@typescript-eslint/eslint-plugin": "5"
}
}