forked from loopbackio/loopback4-example-shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.23 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
84
85
86
87
88
89
90
91
92
{
"name": "loopback4-example-shopping-monorepo",
"version": "1.1.1",
"description": "Root package to manage monorepo for LoopBack 4 Example: Online Shopping APIs",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"commit": "git-cz",
"commitmsg": "commitlint -E GIT_PARAMS",
"docker:version": "lerna version --no-git-tag-version --no-push --no-changelog",
"version": "node ./bin/update-versions",
"docker:build": "./bin/build-images.sh",
"docker:start": "./bin/start-dbs.sh",
"docker:stop": "./bin/stop-dbs.sh",
"migrate": "node ./packages/shopping/dist/migrate",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\"",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --cache --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"pretest:ci": "npm run build",
"test": "lb-mocha --allow-console-logs \"packages/*/dist/__tests__/**/*.js\"",
"test:ui": "cd packages/shopping && npm run test:ui",
"test:ci": "lb-mocha --allow-console-logs \"packages/*/dist/__tests__/**/*.js\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs \"packages/*/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 ./packages/shopping",
"start:recommender": "node ./packages/recommender",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback4-example-shopping.git"
},
"private": true,
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "17.0.1",
"@commitlint/config-conventional": "17.0.0",
"@commitlint/config-lerna-scopes": "17.0.0",
"@commitlint/travis-cli": "17.0.1",
"@loopback/build": "9.0.0",
"@loopback/eslint-config": "13.0.0",
"@loopback/testlab": "5.0.0",
"@types/fs-extra": "9.0.13",
"@types/node": "17.0.42",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"commitizen": "4.2.4",
"concurrently": "7.2.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-eslint-plugin": "4.2.0",
"eslint-plugin-mocha": "10.0.5",
"fs-extra": "10.1.0",
"husky": "8.0.1",
"lerna": "4.0.0",
"mocha": "10.0.0",
"source-map-support": "0.5.21",
"testcontainers": "8.10.1",
"typescript": "4.7.3"
},
"copyright.owner": "IBM Corp.",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}