-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.7 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "neptune-connect",
"version": "0.3.1",
"description": "Neptune Connect is a free interactive tool for querying, optimizing, analyzing, and visualizing your Gremlin-based graph databases.",
"main": "src/index.ts",
"scripts": {
"prisma:migrate": "prisma migrate dev",
"start:index": "node dist/index.js",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"eslint": "eslint src/**/*",
"eslint:fix": "eslint --fix src/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techvariable/NeptuneConnect.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techvariable/NeptuneConnect/issues"
},
"homepage": "https://github.com/techvariable/NeptuneConnect",
"dependencies": {
"@fastify/auth": "^4.2.0",
"@fastify/autoload": "^5.0.0",
"@fastify/compress": "^6.2.0",
"@fastify/cors": "^8.2.0",
"@fastify/formbody": "^7.4.0",
"@fastify/passport": "^2.2.0",
"@fastify/secure-session": "^5.3.0",
"@fastify/sensible": "^5.0.0",
"@fastify/static": "^6.5.1",
"@fastify/swagger": "^8.2.0",
"@fastify/swagger-ui": "^1.3.0",
"@fastify/view": "^7.3.0",
"@prisma/client": "^4.6.1",
"@sendgrid/mail": "^7.7.0",
"@sinclair/typebox": "^0.25.16",
"@types/dotenv": "^8.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"aws-sdk": "^2.1319.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"fastify": "^4.0.0",
"fastify-cli": "^5.6.0",
"fastify-plugin": "^4.0.0",
"gremlin": "^3.6.1",
"gremlin-aws-sigv4": "^3.6.1",
"mailgun.js": "^9.0.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prisma": "^4.6.1",
"uuid": "^9.0.0",
"uuid-apikey": "^1.5.3"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.1",
"@types/gremlin": "^3.6.0",
"@types/node": "^18.0.0",
"@types/passport-local": "^1.0.34",
"@types/tap": "^15.0.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"concurrently": "^7.0.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"fastify-tsconfig": "^1.0.1",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.9.4"
}
}