-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.35 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
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
{
"name": "neptune",
"version": "0.0.1",
"description": "Neptune Connector Test",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "jest",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"premigrate": "npm run build",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Wesley Milan",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^5.0.5",
"@loopback/core": "^4.0.5",
"@loopback/repository": "^5.1.0",
"@loopback/rest": "^12.0.5",
"@loopback/rest-explorer": "^5.0.5",
"@loopback/service-proxy": "^5.0.5",
"@types/sinon": "^10.0.13",
"async": "^0.9.2",
"dotenv": "^16.0.3",
"gremlin": "^3.5.1",
"loopback-connector-neptune": "^0.0.3",
"sinon": "^11.1.1",
"tslib": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@loopback/build": "^9.0.5",
"@loopback/eslint-config": "^13.0.5",
"@loopback/testlab": "^5.0.5",
"@swc/core": "^1.3.23",
"@swc/jest": "^0.2.24",
"@types/async": "^3.2.7",
"@types/gremlin": "^3.4.6",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/uuid": "^8.3.1",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
}
}