-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.06 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
{
"name": "stencil-one",
"version": "0.1.0",
"description": "Stencil Component Starter",
"es2015": "./dist/esm/index.mjs",
"es2017": "./dist/esm/index.mjs",
"jsnext:main": "./dist/esm/index.mjs",
"module": "./dist/custom-elements/index.js",
"main": "./dist/index.cjs.js",
"unpkg": "./dist/my-space.js",
"types": "./dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --docs --dev --esm",
"build:prod": "stencil build --prod --prerender",
"start": "stencil build --dev --esm --watch",
"dev": "concurrently npm:start npm:storybook",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"storybook": "start-storybook -p 6006 --host localhost",
"build-storybook": "build-storybook"
},
"dependencies": {
"@stencil/core": "4.8.0"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/plugin-syntax-jsx": "7.23.3",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@storybook/addon-actions": "7.6.3",
"@storybook/addon-essentials": "7.6.3",
"@storybook/addon-links": "7.6.3",
"@storybook/builder-webpack5": "7.6.3",
"@storybook/html": "7.6.3",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/preset-scss": "1.0.3",
"@types/jest": "27.5.2",
"@types/puppeteer": "5.4.7",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"babel-loader": "9.1.3",
"codecov": "3.8.3",
"concurrently": "8.2.2",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.55.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.0",
"fetch-mock": "9.11.0",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"jest-fetch-mock": "3.0.3",
"lit-html": "3.1.0",
"node-fetch": "3.3.2",
"prettier": "3.1.0",
"puppeteer": "21.5.2",
"standard-version": "9.5.0",
"storybook-addon-jsx": "7.3.14",
"typescript": "5.3.2",
"write-file-webpack-plugin": "4.5.1"
},
"license": "MIT"
}