-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
{
"name": "falco-playground",
"homepage": "https://rohith-raju.github.io/falco-playground/#/",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "vite",
"build": "tsc && vite build --base=./ ",
"cy:open": "cypress open",
"cy:run": "cypress run",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"get-assets": "node scripts/get-assets.js"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@reduxjs/toolkit": "^1.9.7",
"@types/emscripten": "^1.39.6",
"antd": "^5.7.0",
"bootstrap-icons": "^1.11.1",
"clipboardy": "^3.0.0",
"cypress": "^13.3.0",
"gh-pages": "^5.0.0",
"json-schema": "^0.4.0",
"lz-string": "^1.5.0",
"monaco-editor": "^0.44.0",
"monaco-yaml": "^4.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-redux": "^8.1.3",
"react-resize-detector": "^9.1.0",
"react-router-dom": "^6.15.0",
"styled-components": "^6.0.3",
"tar": "^6.2.0",
"ws": "^8.14.2",
"xml2json": "^0.12.0"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
},
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.44.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"typescript": "^5.1.6",
"vite": "^4.4.0",
"vite-plugin-monaco-editor": "^1.1.0"
}
}