-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "shared-tree-inval",
"version": "0.0.1",
"description": "A project for prototyping SharedTree's interop with UI frameworks",
"license": "MIT",
"scripts": {
"build": "npm run format && npm run pack",
"compile": "tsc -b",
"dev": "webpack-dev-server -d",
"format": "prettier src --write",
"lint": "eslint src",
"pack": "webpack",
"start": "npm run dev"
},
"dependencies": {
"@fluid-experimental/tree2": "2.0.0-dev.5.3.2.178189",
"@fluidframework/test-runtime-utils": "2.0.0-dev.5.3.2.178189",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5",
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.31.8",
"html-webpack-plugin": "^4.5.2",
"prettier": "^2.7.1",
"style-loader": "^2",
"ts-loader": "^8.0.0",
"typescript": "~4.5.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
}
}