-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.52 KB
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
{
"private": true,
"dependencies": {
"aspnet-prerendering": "^3.0.1",
"babel-polyfill": "6.26.0",
"babel-runtime": "6.26.0",
"noty": "^3.2.0-beta",
"nprogress": "^0.2.0",
"remotedev": "0.2.7",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"aspnet-webpack": "^2.0.3",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"concurrently": "3.5.1",
"css-loader": "^0.28.11",
"fable-loader": "1.1.6",
"fable-utils": "1.0.6",
"json-loader": "^0.5.7",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "4.8.1",
"webpack-cli": "^2.1.3",
"webpack-hot-middleware": "^2.22.1",
"webpack-node-externals": "^1.7.2"
},
"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"
}
}