-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
78 lines (78 loc) · 2.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
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
{
"name": "fable.-signal-r",
"version": "0.11.5",
"description": "Fable and server bindings for SignalR.",
"homepage": "https://github.com/Shmew/Fable.SignalR",
"bugs": {
"url": "https://github.com/Shmew/Fable.SignalR/issues/new/choose"
},
"license": "MIT",
"author": "Cody Johnson",
"repository": {
"type": "git",
"url": "https://github.com/Shmew/Fable.SignalR"
},
"scripts": {
"build": "webpack -p",
"demo-server": "npx ./startDemoServer.js",
"demo-server-watch": "npx nodemon -e fs,fsproj,fsi --watch src --watch demo --exec npx ./startDemoServer.js",
"dev": "concurrently --kill-others \"yarn demo-server-watch\" \"webpack-dev-server\"",
"pretest": "rimraf ./dist/tests && fable-splitter -c tests/Fable.SignalR.Tests/splitter.config.js",
"publish-docs": "node publish.js",
"start": "live-server --port=8080 docs/",
"test": "jest"
},
"dependencies": {
"@microsoft/signalr": "^5",
"plotly.js": "^1",
"react": "^16",
"react-dom": "^16",
"react-plotly.js": "^2"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/plugin-transform-modules-commonjs": "^7",
"@babel/plugin-transform-regenerator": "^7",
"@babel/preset-env": "^7",
"@sinonjs/fake-timers": "^6",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^10",
"@testing-library/user-event": "^10",
"babel-loader": "^8",
"clean-webpack-plugin": "^3",
"concurrently": "^5",
"copy-webpack-plugin": "^5",
"core-js": "^3",
"css-loader": "^3",
"fable-compiler": "^2",
"fable-loader": "^2",
"fable-splitter": "^2",
"fast-check": "^1",
"file-loader": "^4",
"gh-pages": "^3",
"html-webpack-plugin": "^3",
"jest": "^26",
"live-server": "^1",
"mini-css-extract-plugin": "^0",
"node-sass": "^4",
"nodemon": "^2",
"npx": "^10",
"prettier": "^2",
"remotedev": "^0",
"resolve-url-loader": "^3",
"rimraf": "^3",
"sass": "^1",
"sass-loader": "^7",
"save": "^2",
"style-loader": "^1",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
},
"private": true,
"jest": {
"roots": [
"./dist/tests"
]
}
}