-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "@codecb/single-spa-react",
"version": "0.0.3",
"description": "A single spa plugin for React apps",
"license": "MIT",
"type": "module",
"main": "./dist/esm/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.ts --configPlugin rollup-plugin-ts",
"build:dev": "NODE_ENV=development yarn build",
"build:watch": "yarn build --watch",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@codecb/babel": "0.0.1",
"@codecb/single-spa-layout": "0.0.8",
"@codecb/tsconfigs": "0.0.7",
"@rollup/plugin-babel": "5.3.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"rollup": "2.75.7",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-ts": "3.0.2",
"single-spa": "6.0.0-beta.3",
"typescript": "4.7.4"
},
"peerDependencies": {
"@codecb/single-spa-layout": "0.0.8",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}