This repository was archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathpackage.json
88 lines (88 loc) · 2.61 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": "@xstate/viz",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@graphql-typed-document-node/core": "^3.1.0",
"@monaco-editor/react": "^4.2.1",
"@sentry/react": "^6.10.0",
"@sentry/tracing": "^6.10.0",
"@supabase/supabase-js": "^1.15.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@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.3",
"lz-string": "^1.4.4",
"memory-web-storage": "^1.0.0",
"monaco-editor": "^0.25.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-markdown": "^6.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.0.1",
"web-worker": "^1.0.0",
"xstate": "^4.23.0"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "concurrently \"npm:start:app\" \"npm:graphql:codegen\"",
"start:app": "react-scripts start",
"build": "graphql-codegen && react-scripts build",
"graphql:codegen": "graphql-codegen --watch",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "patch-package && mkdir -p public/monaco-editor && cp -r node_modules/monaco-editor public",
"cypress:open": "cypress open",
"cypress:test": "cypress run"
},
"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": {
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/near-operation-file-preset": "^1.18.1",
"@graphql-codegen/typed-document-node": "^1.18.6",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@testing-library/cypress": "^8.0.0",
"@types/lz-string": "^1.3.34",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"concurrently": "^6.2.0",
"cypress": "^8.0.0",
"cypress-localstorage-commands": "^1.5.0",
"cypress-real-events": "^1.5.0",
"graphql": "^15.5.0",
"patch-package": "^6.4.7",
"sass": "^1.33.0",
"serve": "^12.0.0",
"source-map-explorer": "^2.5.2",
"typescript": "^4.3.5"
}
}