-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "awesome-ui-components",
"version": "0.0.2",
"description": "Awesome UI Component",
"author": "Ravi Mishra",
"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/awesome-ui-components/awesome-ui-components.js",
"files": [
"dist/",
"loader/"
],
"keywords": [
"components",
"stencil",
"web components",
"react",
"ionic"
],
"repository": {
"type": "git",
"url": "https://github.com/dlucidone/awesome-ui"
},
"scripts": {
"start": "run-p stencil:start storybook:start",
"postinstall": "npm run stencil:init",
"stencil:build": "stencil build --docs",
"stencil:init": "stencil build --dev",
"stencil:start": "stencil build --dev --watch",
"stencil:server": "stencil build --dev --watch --serve",
"stencil:test": "stencil test --spec --e2e",
"stencil:test.watch": "stencil test --spec --e2e --watchAll",
"stencil:generate": "stencil generate",
"storybook:start": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"prettier": "prettier --write \"src/**/!(*.d).{js,ts,tsx,html}\"",
"prepublish": "npm run stencil:build && npm run storybook:build && npm run deploy-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@stencil/core": "^1.8.4",
"@stencil/sass": "^1.3.1",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-notes": "^5.3.14",
"@storybook/html": "^5.3.14",
"@storybook/storybook-deployer": "^2.8.5",
"@types/jest": "^25.2.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"jsx-dom": "^6.4.10",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"write-file-webpack-plugin": "^4.5.1"
},
"license": "MIT",
"dependencies": {}
}