-
Notifications
You must be signed in to change notification settings - Fork 798
/
Copy pathpackage.json
49 lines (49 loc) · 2.77 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
{
"private": true,
"main": "test-output/test-dist/index.cjs.js",
"module": "test-output/test-dist/index.js",
"types": "test-output/test-dist/types/components.d.ts",
"collection": "test-output/test-dist/collection/collection-manifest.json",
"scripts": {
"clean": "rm -rf test-output tmp-compiled-tests",
"start": "node ../../bin/stencil build --dev --watch --serve --es5",
"build.all": "npm run clean && npm run build.sibling && npm run build.globalScripts && npm run build.invisible-prehydration.false && npm run build.app && npm run build.custom-elements && npm run karma.webpack && npm run build.prerender",
"build.app": "npm run compile.test-app && node ../../bin/stencil build --debug --es5",
"compile.test-app": "node ../../node_modules/typescript/lib/tsc -p tsconfig.json",
"build.custom-elements": "webpack-cli --config test-app/custom-elements-output-webpack/webpack.config.js && webpack-cli --config test-app/custom-elements-output-tag-class-different/webpack.config.js && webpack-cli --config test-app/custom-elements-delegates-focus/webpack.config.js",
"build.invisible-prehydration.false": "node ../../bin/stencil build --config test-invisible-prehydration/stencil.invisiblePrehydrationFalse.config.ts --debug",
"build.prerender": "node ../../bin/stencil build --config test-prerender/stencil.config-prerender.ts --prerender --debug && node test-prerender/no-script-build.js",
"build.sibling": "node ../../bin/stencil build --config test-sibling/stencil.config.ts --debug",
"build.globalScripts": "node ../../bin/stencil build --config test-global-script/stencil.config.ts --debug",
"karma": "karma start karma.config.js",
"karma.prod": "npm run build.all && npm run karma",
"karma.webpack": "webpack-cli --config test-app/esm-webpack/webpack.config.js",
"karma.chrome": "karma start karma.config.js --browsers=Chrome --single-run=false",
"karma.edge": "karma start karma.config.js --browsers=Edge --single-run=false",
"karma.firefox": "karma start karma.config.js --browsers=Firefox --single-run=false",
"karma.ie": "karma start karma.config.js --browsers=IE --single-run=false"
},
"devDependencies": {
"@stencil/sass": "^3.0.0",
"@types/node": "^16.18.36",
"bootstrap": "^5.0.0",
"karma": "^6.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.1",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^5.1.0",
"karma-polyfill": "^1.1.0",
"karma-typescript": "^5.5.4",
"karma-typescript-es6-transform": "^5.5.4",
"normalize.css": "^8.0.1",
"typescript": "~5.2.0",
"webpack-cli": "^5.0.0",
"workbox-build": "4.3.1"
},
"volta": {
"node": "16.20.2",
"npm": "8.19.4"
}
}