-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
88 lines (88 loc) · 2.64 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
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
{
"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"
},
"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",
"@ant-design/icons": "^5.3.7",
"@monaco-editor/react": "^4.6.0",
"@types/styled-components": "^5.1.34",
"antd": "^5.7.2",
"core-js": "^3.37.1",
"highlight.js": "^11.10.0",
"immer": "^10.1.1",
"lz-string": "^1.5.0",
"monaco-editor": "^0.50.0",
"node-stdlib-browser": "^1.2.0",
"normalize.css": "^8.0.1",
"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-markdown": "^9.0.1",
"react-router-dom": "^6.24.1",
"react-shepherd": "^6.1.1",
"react-spring": "^9.7.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",
"zustand": "^4.3.9"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@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",
"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",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-polyfill-node": "^0.12.0",
"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"
]
}