-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.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
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*/*"
],
"scripts": {
"build": "npm run lint && npm run compile && npm run bundle",
"bundle": "webpack --config webpack.config.core.js && webpack --config webpack.config.ui.js",
"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/**/*.min.js'",
"compile:modules": "lerna run compile",
"format": "prettier --write .",
"lint": "eslint packages/*/*/src/*.js",
"server": "browser-sync start --no-open -s --ss docs --index docs/index.html --files docs/**/index.html docs/**/index.min.js",
"start": "npm run build && run-p server watch",
"test": "karma start --autoWatch false --singleRun true",
"watch": "run-p watch:docs watch:packages",
"watch:packages": "lerna watch -- 'lerna run compile --scope=$LERNA_PACKAGE_NAME --include-dependents && npm run bundle'",
"watch:docs": "onchange docs/**/index.js -- run-s compile:docs bundle",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ebay/browserslist-config": "^2.9.0",
"@ebay/skin": "^18.5.0",
"browser-sync": "^3.0.2",
"chai": "^5.1.1",
"chai-dom": "^1.12.0",
"coverage-istanbul-loader": "^3.0.5",
"coveralls": "^3.1.1",
"css-loader": "^7.1.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-ebay": "^1.2.0",
"eslint-config-prettier": "^9.1.0",
"file-loader": "^6.2.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"mocha": "^11.0.1",
"npm-run-all": "^4",
"onchange": "^7.1.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.7",
"sinon": "^18.0.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"nx": "19.4.3"
},
"browserslist": [
"extends @ebay/browserslist-config"
],
"lint-staged": {
"*.{html,js,json,md}": "prettier --write"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
}
}