-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.11 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
{
"private": true,
"dependencies": {
"babel-polyfill": "6.26.0",
"babel-runtime": "6.26.0",
"phantomjs": "^2.1.7",
"react": "16.0.0",
"react-bootstrap": "0.31.3",
"react-dom": "16.0.0",
"remotedev": "0.2.7"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"concurrently": "3.5.0",
"fable-loader": "1.1.3",
"fable-utils": "1.0.6",
"webpack": "3.7.1",
"webpack-dev-server": "2.9.1"
},
"scripts": {
"prebuildServer": "dotnet restore src/Server/Server.fsproj",
"buildServer": "dotnet build src/Server/Server.fsproj",
"prebuildServerTest": "dotnet restore test/ServerTests/ServerTests.fsproj",
"buildServerTest": "dotnet build test/ServerTests/ServerTests.fsproj",
"restoreClient": "cd src/Client && yarn install",
"restoreNetClient": "dotnet restore src/Client/Client.fsproj",
"prestartClient": "concurrently \"npm run restoreClient\" \"npm run restoreNetClient\" ",
"startClient": "cd src/Client && dotnet fable webpack-dev-server"
}
}