-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "lb4-timezone",
"version": "1.0.0",
"description": "lb4 timezone",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"pretest": "npm run clean && npm run build",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "TZ=\"Asia/Tokyo\" node -r source-map-support/register .",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^1.4.4",
"@loopback/context": "^1.20.2",
"@loopback/core": "^1.8.5",
"@loopback/openapi-v3": "^1.7.0",
"@loopback/repository": "^1.8.2",
"@loopback/rest": "^1.16.3",
"@loopback/rest-explorer": "^1.2.5",
"@loopback/service-proxy": "^1.2.5",
"loopback-connector-mysql": "^5.4.2",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26"
},
"devDependencies": {
"@loopback/build": "^2.0.3",
"source-map-support": "^0.5.12",
"@loopback/testlab": "^1.6.3",
"@types/node": "^10.14.10",
"typescript": "~3.5.2"
}
}