forked from vaadin/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.54 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
{
"name": "vaadin-web-components",
"private": true,
"author": "Vaadin Ltd",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"analyze": "polymer analyze packages/**/vaadin-*.js > analysis.json && node scripts/prepareDocs.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",
"lint:types": "tsc",
"serve:dist": "web-dev-server --app-index dist/index.html --open",
"test": "web-test-runner --coverage",
"test:firefox": "web-test-runner --config web-test-runner-firefox.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: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"
},
"devDependencies": {
"@open-wc/rollup-plugin-html": "^1.2.5",
"@polymer/iron-component-page": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vaadin/testing-helpers": "^0.2.1",
"@web/dev-server": "^0.1.17",
"@web/test-runner": "^0.13.4",
"@web/test-runner-commands": "^0.4.5",
"@web/test-runner-playwright": "^0.8.4",
"@web/test-runner-saucelabs": "^0.5.0",
"@web/test-runner-visual-regression": "^0.6.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"octokit": "^1.0.4",
"playwright": "1.9.2",
"prettier": "^2.2.1",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^13.13.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-vaadin": "^0.2.10",
"typescript": "^4.2.4"
}
}