-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "elmish-to-react",
"version": "0.0.2",
"description": "Wrap an Elmish program as a React component",
"keywords": [
"react",
"elmish",
"fable"
],
"browser": "ElmishToReact.fsproj",
"homepage": "https://github.com/DouglasConnect/ElmishToReact",
"repository": "github:DouglasConnect/ElmishToReact",
"license": "MIT",
"bugs": {
"url": "https://github.com/DouglasConnect/ElmishToReact/issues"
},
"scripts": {
"build": "webpack --config example/webpack.config.js --context example",
"start": "webpack-dev-server --watch --config example/webpack.config.js --context example"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"fable-compiler": "^2.3.18",
"fable-loader": "^2.1.8",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"rxjs": "^6.5.2"
},
"files": [
"*.fs",
"*.fsproj",
".paket/Paket.Restore.targets"
]
}