-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
42
43
44
45
46
47
{
"name": "wordcraft",
"version": "0.0.1",
"description": "Human/AI co-writing",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rm -rf ./client/dist && webpack build --config ./webpack/config.prod.js",
"dev": "webpack serve --config ./webpack/config.dev.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@adobe/lit-mobx": "^2.0.0-rc.4",
"@google/generative-ai": "^0.3.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-circular-progress-four-color": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-fab": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@material/mwc-tab": "^0.27.0",
"@material/mwc-tab-bar": "^0.27.0",
"@webcomponents/webcomponentsjs": "^2.7.0",
"lit": "2.0.0",
"mobiledoc-kit": "^0.15.0",
"mobx": "5.15.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/eslint": "^8.0.0",
"@types/jasmine": "3.5.10",
"@types/node": "14.0.13",
"@types/resize-observer-browser": "0.1.3",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"@webpack-cli/serve": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}