This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
118 lines (118 loc) · 3.81 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@americanexpress/one-app-bundler",
"version": "7.0.3",
"description": "A command line interface(CLI) tool for bundling One App and its modules.",
"main": "index.js",
"module": "true",
"type": "module",
"bin": {
"serve-module": "bin/serve-module.js",
"drop-module": "bin/drop-module.js",
"bundle-one-app": "bin/bundle-one-app.js",
"bundle-module": "bin/bundle-module.js"
},
"repository": {
"url": "https://github.com/americanexpress/one-app-cli.git",
"directory": "packages/one-app-bundler"
},
"homepage": "https://github.com/americanexpress/one-app-cli",
"bugs": {
"url": "https://github.com/americanexpress/one-app-cli/issues"
},
"keywords": [
"one",
"amex",
"bundler",
"react",
"webpack"
],
"contributors": [
"Andres Escobar <[email protected]> (https://github.com/anescobar1991)",
"James Singleton <[email protected]> (https://github.com/JamesSingleton)",
"Jamie King <[email protected]> (https://github.com/10xLaCroixDrinker)",
"Jonathan Adshead <[email protected]> (https://github.com/JAdshead)",
"Michael Tobia <[email protected]> (https://github.com/Francois-Esquire)",
"Michael Tomcal <[email protected]> (https://github.com/mtomcal)",
"Stephanie Coates <[email protected]> (https://github.com/stephaniecoates)",
"Nelly Kiboi <[email protected]> (https://github.com/nellyk)",
"Nickolas Oliver <[email protected]> (https://github.com/PixnBits)",
"Ruben Casas <[email protected]> (https://github.com/infoxicator)"
],
"license": "Apache-2.0",
"dependencies": {
"@americanexpress/one-app-dev-bundler": "^1.7.3",
"@americanexpress/one-app-locale-bundler": "^6.6.0",
"@babel/core": "^7.22.20",
"ajv": "^8.12.0",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"babel-preset-amex": "^4.0.1",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"core-js-compat": "^3.32.2",
"crypto-browserify": "^3.12.0",
"css-loader": "6.8.1",
"domain-browser": "^5.7.0",
"enhanced-resolve": "^5.15.0",
"events": "^3.3.0",
"expose-loader": "^4.1.0",
"file-loader": "^6.2.0",
"folder-hash": "^4.0.4",
"glob": "^10.3.4",
"holocron-module-register-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^5.5.3",
"https-browserify": "^1.0.0",
"joi": "^17.10.2",
"loader-utils": "^3.2.1",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"punycode": "^2.3.1",
"querystring-es3": "^0.2.1",
"read-package-up": "^11.0.0",
"rimraf": "^5.0.1",
"source-map": "^0.7.4",
"ssri": "^10.0.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"timers-browserify": "^2.0.12",
"tty-browserify": "^0.0.1",
"url": "^0.11.3",
"url-loader": "^4.1.1",
"util": "^0.12.5",
"vm-browserify": "^1.1.2",
"webpack": "5.88.2",
"webpack-custom-chunk-id-plugin": "^1.0.3",
"webpack-merge": "^5.9.0",
"webpack-subresource-integrity": "^5.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@americanexpress/one-app-ducks": "*",
"@americanexpress/one-app-router": "*",
"core-js": "^3.32.2",
"create-shared-react-context": "*",
"holocron": "*",
"holocron-module-route": "*",
"immutable": "*",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-helmet": "*",
"react-immutable-proptypes": "*",
"react-redux": "*",
"redux": "*",
"regenerator-runtime": "^0.14.0",
"reselect": "*"
},
"publishConfig": {
"access": "public"
}
}