-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.56 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
{
"name": "root",
"workspaces": [
"packages/*"
],
"private": true,
"keywords": [
"accessibility",
"a11y",
"aria"
],
"scripts": {
"build": "npm run lint && npm run compile && npm run bundle",
"bundle": "webpack",
"compile": "npm run compile:modules && npm run compile:docs",
"compile:docs": "babel docs --out-dir docs --out-file-extension .compiled.js --ignore 'docs/**/*.compiled.js','docs/**/bundle.js'",
"compile:modules": "lerna run compile",
"lint": "eslint packages/**/src/index.js > lint.log",
"server": "browser-sync start -s --ss docs --index docs/index.html --files docs/**/index.html docs/**/index.min.js --port 80",
"start": "npm run build && run-p server watch",
"watch": "onchange packages/**/src/index.js docs/**/index.js -- npm run build"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@ebay/browserslist-config": "2.7.0",
"babel-plugin-transform-object-assign": "^6",
"browser-sync": "^3.0.2",
"core-js-pure": "^3.36.0",
"css-loader": "^6.10.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-ebay": "^1.1.5",
"lerna": "^8.1.2",
"mini-css-extract-plugin": "^2.8.1",
"npm-run-all": "^4",
"onchange": "^7.1.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"extends @ebay/browserslist-config"
]
}