forked from single-spa/single-spa-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.35 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "single-spa-react",
"version": "5.1.4",
"description": "Single-spa lifecycles helper for React apps",
"main": "lib/umd/single-spa-react.js",
"module": "lib/esm/single-spa-react.js",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./lib/esm/single-spa-react.js",
"require": "./lib/cjs/single-spa-react.cjs"
},
"./parcel": {
"import": "./lib/esm/parcel.js",
"require": "./lib/cjs/parcel.cjs"
}
},
"files": [
"lib",
"parcel",
"types/single-spa-react.d.ts",
"README.md"
],
"tsd": {
"directory": "src"
},
"types": "types/single-spa-react.d.ts",
"scripts": {
"build": "concurrently pnpm:build:*",
"build:rollup": "rollup -c",
"build:types": "rimraf parcel && copyfiles -f types/parcel/index.d.ts ./parcel",
"lint": "eslint src",
"test": "concurrently pnpm:test:*",
"test:browser": "cross-env BABEL_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:types": "tsd",
"watch-build": "rollup -cw",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepublishOnly": "pnpm run build",
"prepare": "husky install",
"changeset": "changeset",
"release": "changeset publish"
},
"browserslist": [
"extends browserslist-config-single-spa"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joeldenning/single-spa-react.git"
},
"keywords": [
"single",
"page",
"application",
"spa",
"react"
],
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/single-spa-react/issues"
},
"homepage": "https://github.com/single-spa/single-spa-react#readme",
"dependencies": {
"browserslist-config-single-spa": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@jest/types": "^27.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.1.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"auto": "^10.37.6",
"concurrently": "^6.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dom-element-getter-helpers": "^1.1.1",
"eslint": "^7.32.0",
"eslint-config-react-important-stuff": "^3.0.0",
"husky": "^8.0.0",
"jest": "^27.2.1",
"jest-cli": "^27.2.1",
"jest-config": "^27.2.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"single-spa": "^5.9.3",
"tsd": "^0.17.0",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "*"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"prettier": {},
"auto": {
"plugins": [
"npm",
"released"
]
}
}