-
-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.44 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.44 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "template_playground",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"engines": {
"node": ">=18",
"npm": ">=6"
},
"scripts": {
"dev": "vite",
"build": "tsc && cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@accordproject/concerto-core": "^3.25.7",
"@accordproject/markdown-common": "^0.17.2",
"@accordproject/markdown-template": "^0.17.2",
"@accordproject/markdown-transform": "^0.17.2",
"@accordproject/template-engine": "^2.8.0",
"@ant-design/icons": "^5.3.7",
"@anthropic-ai/sdk": "^0.56.0",
"@google/genai": "^1.8.0",
"@mistralai/mistralai": "^1.7.3",
"@monaco-editor/react": "^4.6.0",
"@types/styled-components": "^5.1.34",
"antd": "^5.7.2",
"core-js": "^3.37.1",
"dompurify": "^3.3.2",
"highlight.js": "^11.10.0",
"html2pdf.js": "^0.14.0",
"immer": "^10.1.1",
"jest-canvas-mock": "^2.5.2",
"lz-string": "^1.5.0",
"monaco-editor": "^0.50.0",
"node-stdlib-browser": "^1.2.0",
"normalize.css": "^8.0.1",
"openai": "^5.8.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dark-mode-toggle": "^0.2.0",
"react-dom": "^18.2.0",
"react-dropdown": "^1.11.0",
"react-icons": "^5.5.0",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^3.0.3",
"react-router-dom": "^6.30.2",
"react-shepherd": "^6.1.1",
"react-spring": "^9.7.4",
"react-tiny-fab": "^4.0.4",
"regenerator-runtime": "^0.13.11",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"shepherd.js": "^13.0.3",
"styled-components": "^6.1.12",
"ts-debounce": "^4.0.0",
"use-debounce": "^10.1.0",
"uuid": "^11.1.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@playwright/test": "^1.57.0",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/dompurify": "^3.0.5",
"@types/lz-string": "^1.3.34",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.21",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^24.1.0",
"module": "^1.2.5",
"postcss": "^8.5.6",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.17",
"tailwindcss-scoped-preflight": "^3.4.12",
"typescript": "^5.1.6",
"vite": "^4.5.6",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vitest": "^1.6.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"last 2 versions",
"not ie <= 11",
"Safari >= 10"
]
}