-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"name": "hmr",
"private": true,
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"npm": ">=7.0.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"postinstall": "dotnet tool restore",
"tests:watch-webpack": "cd tests/webpack && webpack serve --mode development --port 3000",
"tests:watch-parcel": "cd tests/parcel && parcel serve index.html --port 3001",
"tests:watch-vite": "cd tests && vite --port 3002",
"tests:watch-fable": "cd tests && dotnet fable --watch --outDir fableBuild",
"pretests:watch": "shx rm -rf tests/fableBuild",
"tests:watch": "concurrently -p none 'npm:tests:watch-*'",
"docs:watch": "nacara watch",
"docs:build": "nacara build",
"docs:publish": "nacara build && gh-pages -d docs_deploy",
"release": "node ./scripts/release-nuget.js src Fable.Elmish.HMR.fsproj"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmish/hmr.git"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"chalk": "^5.1.2",
"changelog-parser": "^2.8.1",
"concurrently": "^7.5.0",
"gatsby-remark-vscode": "^3.3.1",
"html-webpack-plugin": "^5.5.0",
"nacara": "^1.7.0",
"nacara-layout-standard": "^1.8.0",
"parcel": "^2.8.0",
"process": "^0.11.10",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"vite": "^3.2.3",
"vscode-theme-onelight": "github:akamud/vscode-theme-onelight",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}