-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
111 lines (111 loc) · 3.39 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "playground",
"version": "0.1.0",
"type": "module",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.3",
"@apollo/link-context": "^2.0.0-beta.3",
"@fontsource/roboto": "^5.1.1",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@glideapps/glide-data-grid": "^4.0.2",
"@glideapps/glide-data-grid-cells": "^4.0.2",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@monaco-editor/react": "^4.3.1",
"@protobuf-ts/grpcweb-transport": "^2.9.4",
"@protobuf-ts/plugin": "^2.6.0",
"ansi-to-html": "^0.7.2",
"color-hash": "^2.0.2",
"d3-scale-chromatic": "^2.0.0",
"dequal": "^2.0.2",
"file-saver": "^2.0.5",
"file-select-dialog": "^1.5.4",
"google-protobuf": "^3.21.2",
"graphql": "16.6.0",
"install": "^0.13.0",
"line-column": "^1.0.2",
"lodash.throttle": "^4.1.1",
"markdown-it": "^13.0.1",
"marked": "^4.0.10",
"monaco-editor-core": "^0.39.0",
"parsimmon": "^1.18.1",
"react": "^18.3.1",
"react-cookie": "^4.1.1",
"react-dom": "^18.3.1",
"react-joyride": "^2.5.3",
"react-reflex": "^4.0.9",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^5.3.4",
"sjcl": "^1.0.8",
"string-to-color": "^2.2.2",
"string.prototype.replaceall": "^1.0.6",
"styled-components": "^6.1.14",
"typeface-roboto-mono": "^1.1.13",
"use-deep-compare": "^1.1.0",
"use-deep-compare-effect": "^1.8.1",
"use-keyboard-shortcuts": "^2.2.2",
"visjs-network": "^4.24.11",
"yaml": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/color-hash": "^1.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.0",
"@types/line-column": "^1.0.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.3.3",
"@types/parsimmon": "^1.10.6",
"@types/react": "^18.3.1",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.0",
"@types/sjcl": "^1.0.30",
"@types/styled-components": "^5.1.26",
"@types/use-deep-compare-effect": "^1.5.1",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^12.9.0",
"cypress-wait-until": "^1.7.2",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"postcss-safe-parser": "7.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
},
"scripts": {
"dev": "HTTPS=true vite",
"build": "tsc -b && vite build && ./scripts/copy-build.sh",
"test": "vitest",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"cy:run": "cypress run --browser chrome",
"cy:open": "cypress open",
"update:spicedb": "./scripts/update-spicedb.sh",
"update:zed": "./scripts/update-zed.sh"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}