forked from patternfly/patternfly-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.9 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.9 KB
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
{
"name": "@rhelements/rhelements",
"scripts": {
"start": "spandx",
"lerna": "lerna",
"test": "npm run build && wct --configFile wct.conf.json test/index.html",
"build": "lerna run build",
"clean": "rm -rf node_modules package-lock.json {elements,themes}/*/{node_modules,package-lock.json}",
"bootstrap": "lerna bootstrap --hoist",
"postinstall": "npm run bootstrap",
"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 .storybook_out",
"gh-pages-storybook": "storybook-to-ghpages",
"deploy-storybook": "npm run build-storybook && npm run gh-pages-storybook",
"new": "cd elements && yo --no-insight --no-update-notifier rhelement && npm run test-suite-inject && npm run bootstrap"
},
"husky": {
"hooks": {
"pre-commit": "npm run test-suite-inject > /dev/null && lint-staged"
}
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-notes": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/addon-viewport": "^3.4.8",
"@storybook/cli": "^3.4.8",
"@storybook/polymer": "^3.4.8",
"@storybook/storybook-deployer": "^2.3.0",
"@webcomponents/webcomponentsjs": "^2.0.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.6",
"chalk": "^2.4.1",
"css-scss": "^0.1.1",
"decomment": "^0.9.1",
"del": "^3.0.0",
"dialog-polyfill": "^0.4.10",
"generator-rhelement": "^0.6.4",
"global": "^4.3.2",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sequence": "^1.0.0",
"gulp-shell": "^0.6.5",
"gulp-strip-css-comments": "^2.0.0",
"gulp-svg-sprite": "^1.4.0",
"gulp-trim": "^1.0.2",
"gulp-uglify": "^3.0.1",
"husky": "^1.1.1",
"lerna": "^3.0.0-rc.0",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"lodash.clonedeep": "^4.5.0",
"node-sass": "^4.9.2",
"polymer-webpack-loader": "^2.0.3",
"prettier": "^1.14.0",
"requirejs": "^2.3.5",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"spandx": "^1.0.3",
"strip-css-comments": "^3.0.0",
"trim": "0.0.1",
"wct-browser-legacy": "^1.0.1",
"web-component-tester": "^6.7.1",
"whatwg-fetch": "^3.0.0",
"yo": "^1.8.5"
},
"dependencies": {
"gh-pages": "^2.0.0"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"private": true
}