-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
82 lines (82 loc) · 3.35 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
78
79
80
81
82
{
"name": "vaadin-web-components",
"private": true,
"author": "Vaadin Ltd",
"scripts": {
"analyze": "polymer analyze packages/**/vaadin-*.js > analysis.json && node scripts/prepareDocs.js && node scripts/buildWebtypes.js && node scripts/generateLumoAutoCompleteCss.js && ./scripts/buildThemeTypings.sh",
"build:ts": "tsc --build tsconfig.build.json",
"debug": "web-test-runner --watch",
"debug:it": "web-test-runner --watch --config web-test-runner-it.config.js",
"dist": "rimraf dist && yarn analyze && rollup -c rollup.config.js && cp analysis.json dist",
"docs": "yarn analyze && web-dev-server --node-resolve --open",
"icons": "lerna run icons",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint packages/**/src/*.js packages/**/theme/**/*-styles.js",
"lint:js": "eslint --ext .js,.ts *.js scripts packages test",
"lint:types": "tsc",
"postinstall": "patch-package",
"prepare": "husky",
"serve:dist": "web-dev-server --app-index dist/index.html --open",
"start": "web-dev-server --node-resolve --open /dev",
"test": "web-test-runner",
"test:firefox": "web-test-runner --config web-test-runner-firefox.config.js",
"test:it": "web-test-runner --config web-test-runner-it.config.js",
"test:lumo": "web-test-runner --config web-test-runner-lumo.config.js",
"test:material": "web-test-runner --config web-test-runner-material.config.js",
"test:snapshots": "web-test-runner --config web-test-runner-snapshots.config.js",
"test:webkit": "web-test-runner --config web-test-runner-webkit.config.js",
"update:lumo": "TEST_ENV=update web-test-runner --config web-test-runner-lumo.config.js",
"update:material": "TEST_ENV=update web-test-runner --config web-test-runner-material.config.js",
"update:snapshots": "web-test-runner --config web-test-runner-snapshots.config.js --update-snapshots"
},
"devDependencies": {
"@fontsource/roboto": "^4.5.1",
"@polymer/iron-component-page": "^4.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"@vaadin/testing-helpers": "^1.0.0",
"@web/dev-server": "^0.4.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/rollup-plugin-html": "^2.0.0",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-puppeteer": "^0.17.0",
"@web/test-runner-saucelabs": "^0.11.2",
"@web/test-runner-visual-regression": "^0.10.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-vaadin": "^1.0.0-alpha.28",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"glob": "^8.0.3",
"husky": "^9.1.4",
"lerna": "^4.0.0",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"patch-package": "^7.0.0",
"postcss-lit": "^1.1.0",
"prettier": "^3.1.0",
"prettier-plugin-package": "^1.3.0",
"replace-in-file": "^6.3.5",
"rimraf": "^5.0.1",
"rollup": "^4.4.0",
"stylelint": "^16.10.0",
"stylelint-config-vaadin": "^1.0.0-alpha.2",
"typescript": "^5.5.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"workspaces": [
"test/*",
"packages/*"
]
}