-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "syntax-tree-visualization",
"version": "1.0.0",
"description": "Web application for visualizing abstract syntax tree and syntax array of the code",
"main": "index.js",
"scripts": {
"start": "ts-node-dev -r tsconfig-paths/register src/main/index.ts",
"build": "tsc",
"test": "jest",
"docker": "docker run -p 8080:8080 -d --rm --name devast --mount src=$(pwd),dst=/app,type=bind skril/devast:archlinux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InnoSWP/syntax-tree-visualization.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/InnoSWP/syntax-tree-visualization/issues"
},
"homepage": "https://github.com/InnoSWP/syntax-tree-visualization#readme",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/node": "^17.0.40",
"babel-jest": "^28.1.1",
"jest": "^28.1.1",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"types": "^0.1.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/d3": "^7.4.0",
"@types/jquery": "^3.5.14",
"body-parser": "^1.20.0",
"d3": "^7.4.4",
"express": "^4.18.1",
"tree-sitter": "^0.20.0",
"tree-sitter-javascript": "^0.19.0",
"tsc": "^2.0.4",
"yarn": "^1.22.19"
}
}