-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.91 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
{
"scripts": {
"dev": "vite",
"build": "cross-env NODE_ENV=production tsc && vite build",
"serve": "yarn build && vite preview",
"bundle": "cross-env NODE_ENV=production tsc && vite build && node prepare.js && cd dist && npm pack",
"test": "web-test-runner \"src/**/*.test.{js,jsx,ts,tsx}\"",
"test:integration": "web-test-runner \"src/**/*.steps.{js,jsx,ts,tsx}\" --node-resolve",
"test:coverage": "web-test-runner \"src/**/*.test.{js,jsx,ts,tsx}\" --coverage",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint . && prettier --check \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@chakra-ui/icons": "^1.0.6",
"@chakra-ui/react": "^1.3.4",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@isomorphic-git/lightning-fs": "^4.4.1",
"@isomorphic-git/pgp-plugin": "^0.0.7",
"@nosferatu500/react-sortable-tree": "^3.0.5",
"@vitejs/plugin-react": "^1.0.0",
"buffer": "^6.0.3",
"chakra-ui-markdown-renderer": "^1.1.0",
"emotion-theming": "^11.0.0",
"fast-json-patch": "^3.0.0-1",
"focus-visible": "^5.2.0",
"framer-motion": "^3.10.0",
"html-react-parser": "^1.2.4",
"isomorphic-git": "^1.10.1",
"jszip": "^3.6.0",
"mermaid": "^8.13.2",
"nanoid": "^3.1.20",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-focus-lock": "^2.5.0",
"react-highlight-words": "^0.17.0",
"react-hook-form": "^6.15.4",
"react-hook-thunk-reducer": "^0.2.4",
"react-icons": "^4.2.0",
"react-markdown": "^5.0.3",
"react-simple-code-editor": "^0.11.0",
"react-use": "^17.1.1",
"simplify-js": "^1.2.4",
"unicode-emoji": "^2.1.1",
"vite": "^2.6.0",
"yaml": "^2.0.0-3"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^11.2.5",
"@types/chai": "^4.2.17",
"@types/match-sorter": "^6.0.0",
"@types/mermaid": "^8.2.7",
"@types/prismjs": "^1.16.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-highlight-words": "^0.16.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@web/test-runner": "^0.13.20",
"@web/test-runner-playwright": "^0.8.8",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gherkin-testkit": "^0.0.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"vite-web-test-runner-plugin": "^0.1.0"
}
}