-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-launcher",
"version": "1.0.3",
"description": "",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"homepage": "https://github.com/myNameIsDu/react-launcher",
"repository": {
"type": "git",
"url": "https://github.com/myNameIsDu/react-launcher"
},
"scripts": {
"build": "rm -rf es lib types && rollup -c && pnpm types && pnpm run collectTypes",
"tsc:watch": "tsc -w",
"build:watch": "rollup -c -w",
"watch": "run-p '*:watch'",
"types": "tsc",
"release": "changeset publish",
"lint": "eslint .",
"format": "prettier --check .",
"prepare": "husky install",
"test": "jest",
"version": "changeset version",
"collectTypes": "api-extractor run"
},
"files": [
"es",
"lib"
],
"keywords": [
"react",
"reactjs",
"react",
"router",
"route",
"routing",
"history",
"link",
"launcher"
],
"author": "du012",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@microsoft/api-extractor": "^7.33.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@swc/core": "^1.2.245",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-loadable": "^5.5.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-testing-library": "^5.6.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.78.1",
"typescript": "^4.8.2"
},
"dependencies": {
"react-loadable": "^5.5.0",
"react-router-dom": "^6.3.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"lint-staged": {
"**/*": "prettier --check --ignore-unknown",
"*.{js,ts,tsx}": "eslint --cache"
}
}