-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.83 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
117
118
119
120
121
122
123
{
"name": "web-elements",
"version": "0.0.8",
"description": "Web Elements is a set of components that works with any framework or library, 100% customizable using Css Variables and 100% reusable using 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/web-elements/web-elements.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --docs --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"copy": "cpx \"dist/**/*\" \"dist-storybook/dist\"",
"generate": "node ./scripts/index.js generate",
"storybook": "stencil build --docs && concurrently \"npm run start\" \"start-storybook -p 4666 -s brand\"",
"storybook:build": "concurrently \"npm run build --prod\" \"build-storybook -s brand -c .storybook -o dist-storybook\" && npm run copy",
"lint": "eslint src/**/*{.ts,.tsx}",
"prettier:ts": "prettier --write \"src/**/*.ts?(x)\"",
"prettier:styles": "prettier --write \"src/**/*.scss\""
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@stencil/core": "1.9.2",
"@stencil/eslint-plugin": "^0.3.1",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.3.1",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-notes": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/client-api": "^5.3.18",
"@storybook/web-components": "^5.3.18",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"cpx": "^1.5.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"lit-html": "^1.2.1",
"prettier": "^2.0.5",
"storybook-addon-paddings": "^2.0.2",
"stylelint": "^13.5.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.2"
},
"contributors": [
{
"name": "Gabriel Mayta",
"email": "grandemayta@gmail.com",
"url": "https://github.com/grandemayta"
},
{
"name": "Gianpierre Fernandez",
"email": "fgianpierre@gmail.com",
"url": "https://github.com/G1anpierre"
},
{
"name": "Ferdinando Danise",
"email": "daniseferdinando@gmail.com",
"url": "https://github.com/fdanise"
},
{
"name": "Gabriel Sosa",
"email": "gabe.dev.web@gmail.com",
"url": "https://github.com/gsosa2000"
},
{
"name": "Angelo Falci",
"email": "a.falci@live.it",
"url": "https://github.com/FAngelo94"
}
],
"readme": "https://github.com/grandemayta/web-elements/blob/develop/readme.md",
"homepage": "https://web-elements-260917.web.app",
"repository": {
"url": "https://github.com/guardiani-del-web/web-elements.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"keywords": [
"Web Standards",
"Web Components",
"StencilJS",
"Css Variables"
],
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run prettier:ts",
"npm run lint",
"git add ."
],
"src/**/*.scss": [
"npm run prettier:styles",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}