-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "@msc/studio",
"version": "0.0.0",
"description": "An component studio. Create, dis1s, embrace your own web-components.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/msc/msc.js",
"contributes": {
"html": {
"customData": [
"./custom-elements.json"
]
}
},
"files": [
"dist/",
"loader/",
"scss/"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"graph": "scripts/depcruise.sh",
"sass:error": "node sass-error.js",
"build": "stencil build --docs",
"build:all": "npm run build && npm run build:react",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"start": "stencil build --dev --watch --serve --docs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@stencil/eslint-plugin": "^0.2.1",
"@stencil/sass": "^1.3.2",
"@storybook/web-components": "^5.3.19",
"babel-loader": "^8.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"monaco-editor": "^0.20.0",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"rollup-plugin-visualizer": "^4.0.4",
"workbox-build": "4.3.1"
},
"license": "MIT",
"dependencies": {
"@stencil/core": "^1.16.5",
"@stencil/redux": "^0.1.2",
"debug": "^4.1.1",
"hyperscript": "^2.0.2",
"throttle-debounce": "^2.1.0"
},
"optionalDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^14.0.26",
"@types/throttle-debounce": "^2.1.0",
"dependency-cruiser": "^8.2.0",
"lit-html": "^1.2.1",
"madge": "^3.8.0"
}
}