-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.34 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
{
"name": "@kiwigrid/kiwi-navigation-shell",
"version": "0.4.0",
"description": "SPA routing for decoupled web components",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/navigation-shell/navigation-shell.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"clean": "rimraf dist loader www .stencil",
"generate": "stencil generate",
"start": "run-p start:stencil start:storybook",
"start:stencil": "stencil build --docs --dev --watch --serve",
"start:storybook": "start-storybook -p 6006 -s www",
"test": "NODE_ICU_DATA=node_modules/full-icu stencil test --spec",
"test.watch": "NODE_ICU_DATA=node_modules/full-icu stencil test --spec --watchAll",
"lint": "eslint --fix '*/**/*.{ts,tsx}'",
"build": "run-s build:stencil-ci build:storybook",
"build:stencil": "stencil build --docs",
"build:stencil-ci": "stencil build --ci -c stencil.build.config.ts",
"build:watch": "stencil build --watch",
"build:storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@stencil/core": "^2.4.0",
"@stencil/eslint-plugin": "^0.3.1",
"@stencil/store": "^1.3.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/web-components": "^6.1.18",
"@types/jest": "26.0.20",
"@types/puppeteer": "5.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-loader": "^8.2.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"full-icu": "^1.3.1",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"puppeteer": "5.5.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}