-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.01 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "loopback4-example-shopping",
"version": "1.1.1",
"description": "LoopBack 4 Example: Online Shopping APIs",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist* *.tsbuildinfo",
"migrate": "node ./dist/migrate",
"pretest:ci": "npm run build",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__/**/*.js\"",
"test:ui": "npx cypress open",
"test:ci": "lb-mocha --allow-console-logs \"dist/__tests__/**/*.js\"",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"prestart": "npm run build",
"start": "concurrently --kill-others \"npm run start:app\" \"npm run start:recommender\"",
"start:app": "node -r dotenv/config .",
"start:recommender": "node ../recommender",
"prepublishOnly": "npm run test",
"docker:run": "docker run -p 3000:3000 -d shopping"
},
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback4-example-shopping.git",
"directory": "packages/shopping"
},
"author": {
"name": "LoopBack contributors",
"email": "dev@loopback.io",
"url": "https://loopback.io"
},
"license": "MIT",
"files": [
"README.md",
"index.d.ts",
"dist*/src",
"dist*/index*",
"src"
],
"dependencies": {
"@loopback/authentication": "9.0.0",
"@loopback/authentication-jwt": "0.12.0",
"@loopback/authorization": "0.12.0",
"@loopback/boot": "5.0.0",
"@loopback/context": "5.0.0",
"@loopback/core": "4.0.0",
"@loopback/openapi-v3": "8.0.0",
"@loopback/repository": "5.0.0",
"@loopback/rest": "12.0.0",
"@loopback/rest-explorer": "5.0.0",
"@loopback/security": "0.8.0",
"@loopback/service-proxy": "5.0.0",
"@types/jsonwebtoken": "8.5.8",
"@types/yaml": "1.9.7",
"bcryptjs": "2.4.3",
"casbin": "5.15.1",
"debug": "4.3.4",
"dotenv": "16.0.1",
"express": "4.18.1",
"isemail": "3.2.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"loopback-connector-grpc": "2.0.0",
"loopback-connector-kv-redis": "4.0.0",
"loopback-connector-mongodb": "6.2.0",
"loopback-connector-rest": "4.0.1",
"nodemailer": "6.7.5",
"uuid": "8.3.2",
"yaml": "2.1.1"
},
"devDependencies": {
"@grpc/grpc-js": "1.6.7",
"@loopback/build": "9.0.0",
"@loopback/testlab": "5.0.0",
"@types/bcryptjs": "2.4.2",
"@types/debug": "4.1.7",
"@types/express": "4.17.13",
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "17.0.42",
"@types/nodemailer": "7.0.11",
"@types/uuid": "8.3.4",
"concurrently": "7.2.1",
"cypress": "10.1.0",
"loopback4-example-recommender": "1.1.1",
"mocha": "10.0.0",
"source-map-support": "0.5.21",
"typescript": "4.7.3"
},
"copyright.owner": "IBM Corp."
}