This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
84 lines (84 loc) · 2.17 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
{
"name": "xstate-viz-app",
"version": "0.10.0",
"private": true,
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@monaco-editor/react": "^4.2.1",
"@supabase/supabase-js": "^2.33.1",
"@xstate/graph": "^1.3.0",
"@xstate/inspect": "^0.4.1",
"@xstate/react": "^1.5.1",
"date-fns": "^2.22.1",
"elkjs": "^0.7.1",
"framer-motion": "^4",
"immer": "^9.0.6",
"js-cookie": "^3.0.1",
"lz-string": "^1.4.4",
"memory-web-storage": "^1.0.0",
"mixpanel": "^0.17.0",
"monaco-editor": "^0.25.2",
"next": "^11.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-markdown": "^6.0.2",
"realms-shim": "^1.2.2",
"sha3": "^2.1.4",
"web-vitals": "^1.0.1",
"web-worker": "^1.0.0",
"xstate": "^4.26.0"
},
"scripts": {
"start": "next -p 3000",
"build": "next build",
"serve": "next start",
"postinstall": "patch-package && mkdir -p public/monaco-editor && cp -r node_modules/monaco-editor public",
"cypress:open": "cypress open",
"cypress:test": "cypress run",
"jest": "jest",
"changeset": "changeset"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@testing-library/cypress": "^8.0.0",
"@types/jest": "^27.0.1",
"@types/js-cookie": "^3.0.2",
"@types/lz-string": "^1.3.34",
"@types/prettier": "^2.3.2",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"babel-jest": "^27.0.6",
"cypress": "^8.0.0",
"cypress-localstorage-commands": "^1.5.0",
"cypress-real-events": "^1.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "^27.0.6",
"patch-package": "^6.4.7",
"prettier": "^2.3.2",
"sass": "^1.33.0",
"typescript": "^4.3.5"
}
}