-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
75 lines (75 loc) · 2.57 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
{
"author": "Ian McBurnie <[email protected]>",
"maintainers": [
"Ian McBurnie <[email protected]>"
],
"scripts": {
"start": "npm run build && run-p browser-sync nodemon onchange",
"build": "npm run lint && npm run transpile && npm run bundle && npm run jekyll",
"jekyll": "bundler exec jekyll build --incremental --config _config.yml,_config.localhost.yml",
"browser-sync": "browser-sync start -s --ss _site --index _site/index.html --files '_site'",
"bundle": "webpack",
"clean": "rimraf _transpiled _site .sass-cache",
"fix": "eslint '_js/*.js' --fix",
"lint": "eslint '_js/*.js' > lint.log",
"nodemon": "nodemon --exec 'npm run bundle && npm run jekyll' -e html,css,scss,js --ignore 'static' --ignore '_site'",
"prepublishOnly": "npm run build",
"prep": "npm run prepublishOnly",
"transpile": "babel _js --out-dir _transpiled",
"onchange": "onchange _js -- npm run transpile"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ebay/mindpatterns"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@ebay/browserslist-config": "^2.9.0",
"@ebay/skin": "^17.5.0",
"browser-sync": "^3.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.6.0",
"eslint-config-ebay": "^1.2.0",
"file-loader": "^6.2.0",
"globals": "^15.8.0",
"makeup-active-descendant": "~0.7.0",
"makeup-alert-dialog": "~0.3.0",
"makeup-combobox": "~0.4.0",
"makeup-confirm-dialog": "~0.3.0",
"makeup-dialog": "~0.5.0",
"makeup-dialog-button": "~0.4.0",
"makeup-drawer-dialog": "~0.2.0",
"makeup-expander": "~0.11.0",
"makeup-focusables": "~0.4.0",
"makeup-fullscreen-dialog": "~0.2.0",
"makeup-input-dialog": "~0.2.0",
"makeup-key-emitter": "~0.4.0",
"makeup-lightbox-dialog": "~0.2.0",
"makeup-listbox": "~0.4.0",
"makeup-listbox-button": "^0.5.0",
"makeup-menu": "~0.4.1",
"makeup-menu-button": "^0.4.1",
"makeup-modal": "~0.5.0",
"makeup-next-id": "~0.5.0",
"makeup-panel-dialog": "~0.2.0",
"makeup-prevent-scroll-keys": "~0.3.0",
"makeup-roving-tabindex": "~0.7.0",
"makeup-snackbar-dialog": "~0.2.0",
"makeup-switch": "~0.3.0",
"makeup-tabs": "^0.1.0",
"makeup-toast-dialog": "~0.2.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"npm-run-all": "^4",
"onchange": "^7",
"rimraf": "^5.0.7",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"extends @ebay/browserslist-config"
]
}