forked from microsoft/FluidHelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1018 Bytes
/
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
{
"name": "@fluid-example/hello-world",
"version": "0.1.0",
"description": "Minimal Fluid Container & Data Object sample to implement a collaborative dice roller as a standalone app.",
"repository": "microsoft/FluidHelloWorld",
"license": "MIT",
"author": "Microsoft",
"scripts": {
"build": "webpack --env.prod --env.clean",
"build:dev": "webpack --env.clean",
"start": "concurrently \"npm:start:server\" \"npm:start:client\"",
"start:client": "webpack-dev-server --open",
"start:server": "tinylicious"
},
"dependencies": {
"@fluidframework/aqueduct": "^0.26.0",
"@fluidframework/get-tinylicious-container": "^0.26.0",
"@fluidframework/map": "^0.26.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"html-webpack-plugin": "^4.3.0",
"tinylicious": "0.2.3810",
"ts-loader": "^6.1.2",
"typescript": "~3.7.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.8.0"
}
}