forked from vaadin/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.19 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
{
"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",
"debug": "web-test-runner --watch",
"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 integration",
"lint:types": "tsc",
"postinstall": "patch-package",
"prepare": "husky install",
"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:smoke": "web-test-runner --config web-test-runner-smoke.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": {
"@esm-bundle/chai": "^4.3.4",
"@fontsource/roboto": "^4.5.1",
"@polymer/iron-component-page": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vaadin/testing-helpers": "^0.3.2",
"@web/dev-server": "^0.1.33",
"@web/rollup-plugin-html": "^1.10.3",
"@web/test-runner": "^0.14.0",
"@web/test-runner-commands": "^0.6.4",
"@web/test-runner-playwright": "^0.8.10",
"@web/test-runner-saucelabs": "^0.8.1",
"@web/test-runner-visual-regression": "^0.6.6",
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"lerna": "^4.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"octokit": "^1.7.1",
"patch-package": "^6.4.7",
"postcss-lit": "^0.4.3",
"prettier": "^2.7.1",
"prettier-plugin-package": "^1.3.0",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-vaadin": "^0.3.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"workspaces": [
"integration",
"packages/*"
]
}