-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 955 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
{
"name": "simple-compiler",
"version": "1.0.1",
"description": "Parser of a simple custom language, and compiler to JS",
"main": "index.html",
"scripts": {
"start": "vite",
"check": "tsc --noEmit",
"build": "vite build --base https://darkruby.co.uk/simple-parser/",
"test": "vitest --run"
},
"dependencies": {
"@vitejs/plugin-react": "^2.2.0",
"js-beautify": "^1.11.0",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-monaco-editor": "^0.50.1",
"react-treeview": "^0.4.7",
"reactstrap": "^9.1.5",
"vite": "^3.2.4",
"vitest": "^0.25.2"
},
"devDependencies": {
"@types/js-beautify": "^1.11.0",
"@types/prettier": "^1.16.1",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"@types/react-treeview": "^0.4.2",
"typescript": "^4.9.3"
},
"keywords": [
"parser",
"transpiler",
"compiler",
"tokenizer"
]
}