-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.55 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.55 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
{
"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": "npx nx daemon --start && npm run build && run-p server watch",
"test": "npm run test:unit && npm run test:browser",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:browser": "playwright test",
"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.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@ebay/browserslist-config": "^2.13.0",
"@ebay/skin": "^19.21.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.1",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/ui": "^4.0.18",
"browser-sync": "^3.0.4",
"coveralls": "^3.1.1",
"css-loader": "^7.1.3",
"esbuild": "^0.27.3",
"eslint": "^10.0.0",
"eslint-config-ebay": "^1.2.0",
"eslint-config-prettier": "^10.1.8",
"file-loader": "^6.2.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"mini-css-extract-plugin": "^2.10.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4",
"onchange": "^7.1.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"sinon": "^21.0.1",
"stylelint": "^17.1.1",
"stylelint-config-standard": "^40.0.0",
"vitest": "^4.0.18",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"extends @ebay/browserslist-config"
],
"lint-staged": {
"*.{html,js,json,md}": "prettier --write"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
}
}