-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 4.45 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
{
"name": "stencil-storybook",
"beawareofchange": "change aswell scripts:build:storybook --static-dir",
"version": "2.0.1",
"license": "MIT",
"distDirs": {
"stencil": "dist-stencil",
"storybook": "dist-storybook",
"beawareofchange": "change aswell main,module,es2015,es2017,types,collection and .gitignore"
},
"main": "dist-stencil/index.cjs.js",
"module": "dist-stencil/index.js",
"es2015": "dist-stencil/esm/index.js",
"es2017": "dist-stencil/esm/index.js",
"types": "dist-stencil/index.d.ts",
"collection": "dist-stencil/collection/collection-manifest.json",
"scripts": {
"npm:install": "npm install",
"npm:ci": "npm ci",
"--- development ---": "this is a divider",
"start": "concurrently -n storybook,stencil,proxy -c \"bgMagenta.bold,bgBlue.bold,bgCyan.bold\" \"npm:watch:storybook\" \"npm:watch:stencil\" \"npm:watch:proxy\"",
"watch:storybook": "npm run stencil:to:storybook && start-storybook --no-dll -p 3001 --ci --quiet",
"watch:stencil": "stencil build --dev --watch --serve --port 3002",
"watch:proxy": "wait-on http://localhost:3001/ && wait-on http://localhost:3002/ && node ./scripts/proxy.js",
"new:component": "node ./scripts/create-component.js",
"--- production ---": "this is a divider",
"build": "run-s build:stencil build:storybook",
"build:stencil": "stencil build --docs",
"build:pre:storybook": "node ./scripts/pre-storybook.js",
"build:storybook": "npm run build:pre:storybook && build-storybook --quiet --output-dir ./dist-storybook --static-dir node_modules/.storybook-static-dir",
"storybook:static:dir": "node ./scripts/storybook-static-dir.js",
"stencil:to:storybook": "node ./scripts/stencil-to-storybook.js",
"--- misc ---": "this is a divider",
"test": "stencil test --spec --e2e --coverage",
"lint": "run-p lint:js lint:css",
"lint:js": "eslint src/**/*{.ts,.tsx} --no-error-on-unmatched-pattern",
"lint:css": "stylelint src/**/*.scss --allow-empty-input",
"lint:husky": "lint-staged",
"lint:js:fix": "eslint src/**/*{.ts,.tsx} --fix --no-error-on-unmatched-pattern",
"lint:css:fix": "stylelint src/**/*.scss --fix",
"chromatic": "run-s build:stencil chromatic:publish",
"chromatic:publish": "npx chromatic --project-token <REPLACE-WITH-YOUR-TOKEN> --build-script-name build:storybook"
},
"dependencies": {
"@stencil/core": "^2.5.2",
"@stencil/postcss": "^2.0.0",
"@stencil/sass": "^1.4.1",
"@storybook/web-components": "^6.2.9",
"lit-html": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@stencil/eslint-plugin": "^0.3.1",
"@storybook/addon-a11y": "^6.2.8",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-postcss": "^2.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/puppeteer": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.1.1",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript": "^10.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"filehound": "^1.17.4",
"fs-extra": "^9.0.1",
"yargs": "^16.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"npm-run-all": "^4.1.5",
"puppeteer": "^5.3.1",
"react-is": "^16.13.1",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-declaration-strict-value": "^1.6.1",
"stylelint-high-performance-animation": "^1.5.1",
"typescript": "^4.0.3",
"write-file-webpack-plugin": "^4.5.1",
"http-proxy-middleware": "^1.0.5",
"node-fetch": "^2.6.1",
"chalk": "^4.1.0",
"bootstrap-scss": "^4.2.1",
"concurrently": "^5.3.0",
"wait-on": "^5.2.0",
"ts-dedent": "^2.0.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"prompts": "^2.4.1"
},
"jest": {
"preset": "@stencil/core/testing"
},
"authors": [
{
"name": "Willy Woitas",
"username": "dutscher",
"email": "dutscher_sbf@hotmail.com"
},
{
"name": "André Bellmann",
"username": "ingomc",
"email": "janick2002@gmx.de"
}
]
}