-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.57 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.57 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
{
"name": "sample-web-construct",
"version": "1.0.0",
"description": "this is a sample setup to develop a web-compatible CDK construct in JavaScript",
"main": "./sample-web-construct.js",
"scripts": {
"build": "npm-run-all build:webpack:* build:compress:*",
"build:compress:compile": "google-closure-compiler --js=dist/cdk-web-lambda.js --js_output_file=dist/cdk-web-lambda.min.js --warning_level=QUIET",
"build:compress:postprocess": "shx rm dist/cdk-web-lambda.js && shx mv dist/cdk-web-lambda.min.js dist/cdk-web-lambda.js && shx cp dist/cdk-web-lambda.js public/cdk-web-lambda.js",
"build:webpack:bundle": "webpack --config webpack.config.js --mode production",
"postinstall": "bash scripts/postinstall.sh",
"serve": "webpack serve",
"test": "jest"
},
"keywords": [
"cdk",
"cdk-web"
],
"author": "",
"license": "MIT",
"devDependencies": {
"assert": "^2.0.0",
"aws-sdk": "^2.1088.0",
"browserify-zlib": "^0.2.0",
"cdk-web": "^2.0.7",
"crypto-browserify": "^3.12.0",
"esbuild-wasm": "^0.14.27",
"google-closure-compiler": "^20220301.0.0",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"jszip": "^3.7.1",
"memfs": "^3.4.1",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"puppeteer": "^13.5.0",
"raw-loader": "^4.0.2",
"shx": "^0.3.4",
"stream-browserify": "^3.0.0",
"typescript": "^4.6.3",
"util": "^0.12.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}