-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.85 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.85 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@typecell-org/editor",
"version": "0.0.3",
"private": true,
"dependencies": {
"@hocuspocus/provider": "^2.4.0",
"@atlaskit/atlassian-navigation": "^2.6.13",
"@atlaskit/avatar": "^21.3.7",
"@atlaskit/breadcrumbs": "^11.10.5",
"@atlaskit/button": "^16.8.2",
"@atlaskit/css-reset": "^6.5.3",
"@atlaskit/dropdown-menu": "^11.10.5",
"@atlaskit/empty-state": "^7.6.3",
"@atlaskit/flag": "^15.2.15",
"@atlaskit/form": "^8.11.8",
"@atlaskit/inline-message": "^11.5.3",
"@atlaskit/menu": "^1.9.5",
"@atlaskit/modal-dialog": "^12.6.3",
"@atlaskit/page-header": "^10.4.4",
"@atlaskit/page-layout": "^1.7.7",
"@atlaskit/section-message": "^6.4.10",
"@atlaskit/select": "^16.5.7",
"@atlaskit/spinner": "^15.5.3",
"@atlaskit/textarea": "^4.7.4",
"@atlaskit/textfield": "^5.6.3",
"@atlaskit/tree": "^8.8.5",
"@tiptap/core": "^2.0.4",
"@blocknote/core": "^0.9.2",
"@emotion/react": "^11.4.0",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/auth-ui-shared": "^0.1.6",
"@supabase/supabase-js": "^2.26.0",
"@syncedstore/yjs-reactive-bindings": "^0.5.1",
"@typecell-org/util": "^0.0.3",
"@typecell-org/shared": "^0.0.3",
"@typecell-org/engine": "^0.0.3",
"@typecell-org/parsers": "^0.0.3",
"@typecell-org/frame": "^0.0.3",
"speakingurl": "^14.0.1",
"classnames": "^2.3.1",
"fractional-indexing": "^2.0.0",
"lodash": "^4.17.21",
"mobx": "^6.2.0",
"mobx-react-lite": "^3.2.0",
"penpal": "^6.1.0",
"react": "^18.2.0",
"react-avatar": "^3.10.0",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^18.2.0",
"react-error-overlay": "^6.0.9",
"react-icons": "^4.6.0",
"react-router-dom": "^6.10.0",
"vscode-lib": "^0.1.2",
"web-vitals": "^1.0.1",
"y-indexeddb": "9.0.6",
"y-protocols": "^1.0.5",
"y-websocket": "^1.5.0",
"yjs": "^13.6.4"
},
"scripts": {
"copytypes:self": "tsc --declaration --emitDeclarationOnly --noEmit false --composite false --declarationDir ./public/types/@typecell-org/editor",
"copytypes:externaldep": "mkdir -p public/types/$npm_config_pkgname && cp -rf ../../node_modules/$npm_config_pkgname/. public/types/$npm_config_pkgname",
"copytypes:allexternaldeps": "npm run copytypes:externaldep --pkgname=@types/react && npm run copytypes:externaldep --pkgname=@types/scheduler && npm run copytypes:externaldep --pkgname=@types/prop-types && npm run copytypes:externaldep --pkgname=csstype",
"copytypes:dep": "mkdir -p public/types/@typecell-org/$npm_config_pkgname && cp -rf ../$npm_config_pkgname/types/. public/types/@typecell-org/$npm_config_pkgname",
"copytypes:alldeps": "npm run copytypes:dep --pkgname=util && npm run copytypes:dep --pkgname=engine && npm run copytypes:dep --pkgname=frame",
"copytypes": "npm run copytypes:self && npm run copytypes:alldeps && npm run copytypes:allexternaldeps",
"start": "npm run copytypes && npm run vite:dev",
"copy-docs": "node copy-docs.mjs > public/_docs/index.json",
"build": "tsc -v && npm run copytypes && npm run copy-docs",
"build:react": "cross-env NODE_OPTIONS=--max_old_space_size=8192 CI=true npm run vite:build",
"install-playwright": "npx playwright install --with-deps",
"playwright:dev": "cross-env TYPECELL_BASE_URL=http://localhost:5173 npx playwright test --ui",
"playwright:preview": "cross-env TYPECELL_BASE_URL=http://localhost:4173 npx playwright test",
"lint": "eslint src",
"test-watch": "vitest watch",
"unittest:vitest": "vitest run",
"unittest:playwright": "playwright-test '**/*.browsertest.ts' --runner mocha",
"test": "npm run unittest:vitest && npm run unittest:playwright",
"vite:dev": "vite",
"vite:build": "vite build --mode=$MODE",
"vite:preview": "vite preview",
"preview": "npm run vite:preview"
},
"eslintConfig": {
"extends": [
"../shared/.eslintrc.cjs"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@playwright/experimental-ct-react": "^1.36.0",
"@typecell-org/shared-test": "^0.0.3",
"@types/lodash": "^4.14.168",
"@types/node": "^16.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/speakingurl": "^13.0.2",
"@vitejs/plugin-react": "^4.0.0",
"connect-history-api-fallback": "^2.0.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.21.0",
"glob": "^7.2.0",
"jsdom": "^22.1.0",
"playwright-test": "^12.1.1",
"rimraf": "^3.0.2",
"rollup-plugin-polyfill-node": "^0.12.0",
"vite": "^4.4.2",
"vitest": "^0.33.0",
"rollup-plugin-webpack-stats": "^0.2.0"
}
}