forked from microsoft/FluidHelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
{
"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": "start-server-and-test start:server 7070 start:client",
"start:client": "webpack serve",
"start:server": "npx tinylicious@latest"
},
"dependencies": {
"@fluidframework/tinylicious-client": "^0.56.5",
"fluid-framework": "^0.56.5"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"html-webpack-plugin": "^4.3.0",
"start-server-and-test": "^1.11.6",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"printWidth": 100
}
}