forked from accordproject/template-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
49
50
51
52
53
54
{
"name": "template_playground",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"engines": {
"node": ">=18",
"npm": ">=6"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@accordproject/concerto-core": "^3.11.1",
"@accordproject/markdown-common": "^0.16.19",
"@accordproject/markdown-template": "^0.16.19",
"@accordproject/markdown-transform": "^0.16.19",
"@accordproject/template-engine": "^2.3.5",
"@monaco-editor/react": "^4.5.1",
"antd": "^5.7.2",
"core-js": "^3.31.1",
"immer": "^10.0.2",
"lz-string": "^1.5.0",
"node-stdlib-browser": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropdown": "^1.11.0",
"regenerator-runtime": "^0.13.11",
"ts-debounce": "^4.0.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.44.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"module": "^1.2.5",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-polyfill-node": "^0.12.0",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-node-stdlib-browser": "^0.2.1"
}
}