-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
48
{
"name": "daml-chat",
"version": "4.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "daml build && daml codegen js && vite dev web",
"build": "daml build && daml codegen js && tsc && vite build web",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview web",
"format": "prettier web --write",
"format-test": "prettier web --check"
},
"dependencies": {
"@daml.js/daml-chat": "file:web/generated/daml.js/daml-chat-4.0.0",
"@daml/ledger": "^2.7.6",
"@daml/types": "^2.7.6",
"@webscopeio/react-textarea-autocomplete": "^4.6.1",
"emoji-mart": "^5.5.2",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-scroll": "^1.9.0",
"react-syntax-highlighter": "^15.5.0",
"skeleton-css": "^2.0.4",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-scroll": "^1.8.10",
"@types/uuid": "^9.0.7",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}