-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 921 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
{
"name": "custom-editor-app",
"version": "1.0.0",
"description": "Example app using ANTLR and monaco",
"scripts": {
"start": "webpack-dev-server --hot --open",
"build": "webpack",
"build:antlr": "antlr4ts ./src/antlr/Todo.g4"
},
"author": "Alison Goryachev",
"license": "ISC",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"assert": "^2.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-monaco-editor": "^0.41.2"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"antlr4ts-cli": "^0.5.0-alpha.4",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"style-loader": "^2.0.0",
"ts-loader": "^7.0.5",
"typescript": "^4.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}