forked from dralletje/Notebook-Experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 998 Bytes
/
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
{
"name": "lezer-playground-monorepo",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "turbo run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.6",
"turbo": "^1.9.6",
"typescript": "^5.6.2"
},
"pnpm": {
"patchedDependencies": {
"recast": "patches/recast.patch"
}
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.6.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-lezer": "^6.0.1",
"@codemirror/language": "^6.10.2",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@lezer/common": "^1.2.3",
"@lezer/generator": "^1.7.2",
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.4.2",
"lodash-es": "^4.17.21"
}
}