-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
142 lines (142 loc) · 4 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@eberlywc/eberlywc",
"version": "0.0.0",
"description": "Web component library for Eberly.",
"wcfactory": {
"askSASS": true,
"askProps": true,
"askHAX": true,
"monorepo": "eberlywc",
"orgNpm": "@eberlywc",
"orgGit": "EberlyODL",
"gitRepo": "[email protected]:EberlyODL/eberlywc.git",
"sass": {
"name": "rh-sass",
"pkg": "@rhelements/rh-sass",
"path": "rh-sass/rh-sass"
}
},
"author": {
"name": "EberlyODL",
"url": ""
},
"license": "Apache-2.0",
"repository": "[email protected]:EberlyODL/eberlywc.git",
"scripts": {
"start": "bash scripts/preinstall.sh && yarn run storybook",
"lerna": "lerna",
"preinstall": "bash scripts/preinstall.sh",
"postinstall": "bash scripts/postinstall.sh",
"init": "lerna init",
"test": "yarn run build && wct --configFile wct.conf.json test/index.html",
"build": "lerna run build --no-bail",
"publish": "echo 'NOTICE: You must run `lerna publish` manually'",
"test-suite-inject": "node scripts/test-suite-inject.js",
"storybook": "start-storybook -c .storybook -p 9001 -s ./elements",
"build-storybook": "build-storybook -c .storybook -o ../../storybooks/eberlywc",
"rebuild-wcfcache": "./node_modules/.bin/gulp",
"new": "yarn run rebuild-wcfcache && wcf element && yarn run test-suite-inject && yarn install --link-duplicates"
},
"devDependencies": {
"@storybook/addon-knobs": "4.1.18",
"@open-wc/webpack": "0.1.6",
"@open-wc/storybook": "0.2.8",
"@emotion/core": "0.13.1",
"@emotion/styled": "0.10.6",
"@webcomponents/webcomponentsjs": "2.4.1",
"lit-element": "^2.3.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-custom-element-classes": "0.1.0",
"babel-plugin-transform-es2015-modules-umd": "6.24.1",
"babel-preset-env": "1.7.0",
"browser-sync": "2.26.7",
"chalk": "3.0.0",
"css-scss": "0.1.1",
"decomment": "0.9.2",
"del": "5.1.0",
"dialog-polyfill": "0.5.0",
"global": "4.4.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "8.0.0",
"gulp-clean-css": "4.2.0",
"gulp-concat-util": "0.5.5",
"gulp-copy": "4.0.1",
"gulp-rename": "1.4.0",
"gulp-replace": "1.0.0",
"gulp-sequence": "1.0.0",
"gulp-shell": "0.7.1",
"gulp-strip-css-comments": "2.0.0",
"gulp-svg-sprite": "1.5.0",
"gulp-trim": "1.0.2",
"husky": "3.0.9",
"inquirer-recursive": "0.0.6",
"jest": "24.9.0",
"lerna": "3.18.4",
"lint-staged": "9.4.3",
"lodash": "4.17.15",
"lodash.clonedeep": "4.5.0",
"polymer-build": "3.1.4",
"polymer-webpack-loader": "2.0.3",
"polymer-cli": "1.9.11",
"es-dev-server": "1.36.2",
"concurrently": "5.0.2",
"prettier": "1.19.1",
"raw-loader": "3.1.0",
"react": "*",
"react-dom": "*",
"requirejs": "2.3.6",
"rollup": "1.26.5",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-delete": "1.1.0",
"rollup-plugin-terser": "5.1.2",
"strip-css-comments": "4.0.0",
"symlink-dir": "3.1.1",
"trim": "0.0.1",
"wct-browser-legacy": "1.0.2",
"web-component-tester": "6.9.2",
"webpack": "4.41.2",
"whatwg-fetch": "3.0.0",
"yo": "3.1.0"
},
"dependencies": {
"@lrnwebcomponents/deduping-fix": "2.4.0"
},
"keywords": [
"yeoman-generator",
"custom-elements",
"web-components",
"webcomponents",
"polymer",
"lit-element",
"skate-js",
"slim-js",
"twig",
"lit-html",
"vanillajs"
],
"private": true,
"npmClient": "yarn",
"useWorkspaces": true,
"workspaces": {
"packages": [
"elements/*",
"themes/*"
],
"nohoist": []
},
"husky": {
"hooks": {
"pre-commit": "yarn run test-suite-inject > /dev/null && lint-staged"
}
},
"lint-staged": {
"*.{js,json}": "prettier --write",
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
],
"*.css": "stylelint --fix",
"*.scss": "stylelint --syntax=scss --fix"
}
}