-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "zephr-lang",
"version": "1.0.0",
"private": true,
"description": "zephr-lang",
"author": "Trevor Harmon",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"make": "antlr4ts src/extensions/zephyr/language/grammar/ZephyrLexer.g4 -visitor src/extensions/zephyr/language/grammar/ZephyrParser.g4 -o src/extensions/zephyr/language/build -Xexact-output-dir"
},
"dependencies": {
"@codemirror/commands": "^6.2.2",
"@codemirror/language": "^6.6.0",
"@lezer/common": "^1.0.2",
"@lezer/highlight": "^1.1.3",
"@uiw/react-codemirror": "^4.19.9",
"antlr4": "^4.12.0",
"antlr4-c3": "2.2.1",
"antlr4ts": "0.5.0-alpha.4",
"assert": "^2.0.0",
"autoprefixer": "^10.4.14",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-prismjs": "^2.1.0",
"buffer": "^6.0.3",
"gatsby": "^5.7.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^5.7.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-postcss": "^6.7.0",
"postcss": "^8.4.21",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.15.0",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"antlr4ts-cli": "^0.5.0-alpha.4",
"babel-preset-gatsby": "^3.7.0",
"typescript": "^4.9.5"
}
}