-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "@loopback/example-webpack",
"description": "An example to bundle @loopback/core using webpack",
"version": "0.13.11",
"keywords": [
"loopback",
"LoopBack",
"example",
"tutorial"
],
"license": "MIT",
"main": "dist/index.js",
"unpkg": "dist/bundle-web.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "examples/webpack"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"build:webpack-node": "webpack --config-name node",
"build:webpack-web": "webpack --config-name web",
"prepack": "npm run build:webpack-web",
"clean": "lb-clean loopback-example-webpack*.tgz dist *.tsbuildinfo package",
"verify": "npm pack && tar xf loopback-example-webpack*.tgz && tree package && npm run clean",
"pretest": "npm run rebuild",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"rebuild": "npm run clean && npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@loopback/core": "^7.0.10",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/build": "^12.0.10",
"@loopback/eslint-config": "^16.0.1",
"@loopback/testlab": "^8.0.10",
"@types/node": "^16.18.126",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"eslint": "^10.1.0",
"events": "^3.3.0",
"process": "^0.11.10",
"puppeteer": "^24.40.0",
"typescript": "~5.2.2",
"util": "^0.12.5",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
}
}