-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 965 Bytes
/
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
{
"name": "feature-hub-esm-example",
"version": "1.0.0",
"description": "Loading a Feature App with ES Modules",
"keywords": [
"react",
"feature hub",
"esm"
],
"license": "ISC",
"author": "Hendrik Liebau <mail@hendrik-liebau.de>",
"type": "module",
"scripts": {
"prebuild": "node ./scripts/prepare.js",
"build": "node ./scripts/build.js",
"prestart": "node ./scripts/prepare.js",
"start": "node ./scripts/start.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@feature-hub/core": "^3.0.0",
"@feature-hub/react": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "^0.2.2",
"@types/node": "^20.8.4",
"@types/react": "^18.2.27",
"@types/react-dom": "^18.2.12",
"esbuild": "^0.19.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}