generated from elmsln/project-two
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 3 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@lrnwebcomponents/rename-me",
"description": "HAX Capable web component to build a better future",
"license": "Apache-2.0",
"author": "btopro",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/elmsln/project-3.git"
},
"scripts": {
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"storybook": "npm run analyze -- --exclude dist && web-dev-server -c .storybook/server.mjs",
"storybook:build": "npm run analyze -- --exclude dist && build-storybook",
"build": "rimraf dist && rollup -c rollup.config.js && npm run analyze -- --exclude dist",
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
"analyze": "cem analyze --litelement",
"start": "web-dev-server"
},
"dependencies": {
"lit": "^2.0.2",
"@lrnwebcomponents/simple-colors": "^4.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@custom-elements-manifest/analyzer": "^0.4.17",
"@open-wc/building-rollup": "^1.10.0",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@web/dev-server": "^0.1.24",
"@web/dev-server-storybook": "next",
"@web/rollup-plugin-html": "^1.10.1",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"@web/test-runner": "^0.13.18",
"babel-plugin-template-html-minifier": "^4.1.0",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"@lrnwebcomponents/h-a-x": "^4.0.4",
"@lrnwebcomponents/grid-plate": "^4.0.4",
"@lrnwebcomponents/wikipedia-query": "^4.0.4",
"@lrnwebcomponents/meme-maker": "^4.0.4",
"@lrnwebcomponents/word-count": "^4.0.4",
"@lrnwebcomponents/multiple-choice": "^4.0.4",
"@lrnwebcomponents/retro-card": "^4.0.4",
"@lrnwebcomponents/self-check": "^4.0.4",
"@lrnwebcomponents/replace-tag": "^4.0.4",
"@lrnwebcomponents/deduping-fix": "^4.0.0",
"web-animations-js": "2.3.2",
"@webcomponents/webcomponentsjs": "2.6.0"
},
"keywords": [
"web-components",
"html"
],
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"private": false,
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json"
}