-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 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
{
"name": "avocano-app",
"description": "Avocano app",
"license": "MIT",
"author": "avocano-shell",
"version": "1.13.5",
"type": "module",
"scripts": {
"lint": "eslint",
"format": "eslint --fix",
"test": "web-test-runner 'test/**/*.test.js' --node-resolve",
"test:watch": "web-test-runner --watch",
"build": "rimraf dist && rollup -c rollup.config.mjs",
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
"start": "web-dev-server",
"prepare": "cd .. && husky client/.husky"
},
"dependencies": {
"@material/mwc-button": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-select": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server": "^0.4.0",
"@web/dev-server-rollup": "^0.6.0",
"@web/rollup-plugin-html": "^2.0.1",
"@web/rollup-plugin-import-meta-assets": "^2.1.0",
"express": "^4.21.2",
"idb": "^8.0.0",
"lit": "^3.0.0",
"replace": "^1.2.2",
"rollup": "^4.22.4"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@custom-elements-manifest/analyzer": "^0.10.0",
"@open-wc/testing": "^4.0.0",
"@web/test-runner": "^0.20.0",
"babel-plugin-template-html-minifier": "^4.1.0",
"deepmerge": "^4.3.1",
"eslint": "^9.2.0",
"globals": "^16.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.9",
"prettier": "^3.0.3",
"rimraf": "^6.0.0",
"sinon": "^19.0.0"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"customElements": "custom-elements.json"
}