This repository was archived by the owner on May 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "managraph-api",
"description": "API for managing MemGraph instances",
"author": {
"name": "Boris Marković",
"email": "bmarkovic17@outlook.com"
},
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=15.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bmarkovic17/managraph-api.git"
},
"keywords": [
"managraph",
"memgraph",
"database",
"instance management",
"REST API"
],
"main": "dist/api",
"scripts": {
"prepare": "husky install",
"lint": "eslint src/**/* && eslint test/**/*",
"prebuild": "concurrently \"npm run lint\" \"tsoa spec-and-routes\"",
"build": "tsc",
"test": "tsc && mocha",
"prestart": "npm run build",
"start": "node ."
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.36",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.2.0",
"mocha": "^8.3.2",
"typescript": "^4.2.3"
},
"dependencies": {
"camelcase": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"nanoid": "^3.1.22",
"neo4j-driver": "^4.2.3",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.6.1"
}
}