-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
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": "git-dependency-analysis-tool",
"version": "1.0.0",
"description": "Node.js tool for analyzing Git repository organisations (such as GitLab) and dumping the data in Neo4J for visualization, querying, and analysis.",
"main": "dist/main.js",
"scripts": {
"start": "npm run build && node dist/main.js",
"start:neo4j": "docker-compose -f neo4j/docker-compose.yml up",
"build": "npx tsc",
"lint": "npx eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier:all": "pretty-quick",
"prettier": "pretty-quick --staged",
"postinstall": "npm run build"
},
"author": "Laurens Van Keer",
"email": "laurens@appvision.be",
"url": "https://appvision.be",
"devDependencies": {
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.25.0",
"dotenv": "^14.3.0",
"neo4j-driver": "^4.4.1",
"threads": "^1.7.0"
}
}