forked from amazzalel-habib/TodoLangEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 780 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
{
"name": "todolangeditor",
"version": "1.0.0",
"description": "TodoLang editor",
"scripts": {
"start": "webpack-dev-server --hot --open",
"antlr4ts": "antlr4ts ./TodoLangGrammar.g4 -o ./src/ANTLR"
},
"author": "Open",
"license": "ISC",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3",
"monaco-editor-core": "^0.18.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"antlr4ts-cli": "^0.5.0-alpha.3",
"css-loader": "^3.3.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.1",
"ts-loader": "^5.3.3",
"typescript": "^3.4.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}