-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "@hydrofoil/hydrofoil-shell",
"version": "0.0.0",
"description": "A base for a Hydra-driven application",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/hypermedia-app/hydrofoil-shell.git"
},
"author": "Tomasz Pluskiewicz <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "wtr",
"postinstall": "husky install",
"release": "changeset publish"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.5",
"@changesets/cli": "^2.22.0",
"@open-wc/eslint-config": "^7.0.0",
"@tpluscode/eslint-config": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@web/test-runner": "^0.13.27",
"eslint": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-lit-a11y": "^2.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-wc": "^1.3.2",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.5.2"
},
"workspaces": [
"packages/*"
],
"bugs": {
"url": "https://github.com/hypermedia-app/hydrofoil-shell/issues"
},
"homepage": "https://github.com/hypermedia-app/hydrofoil-shell#readme",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}