-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "roadshow",
"private": true,
"description": "Rendering app layouts using SHACL and lit-html",
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"test": "wtr",
"postinstall": "husky install",
"build": "wsrun -m -c prepack",
"release": "changeset publish",
"prepare": "npx yarn-deduplicate"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@changesets/cli": "^2.21.1",
"@open-wc/eslint-config": "^4.2.0",
"@tpluscode/eslint-config": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@web/test-runner": "^0.13.27",
"eslint": "^7.12.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-require-extensions": "^0.1.1",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-wc": "^1.3.2",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.5.2",
"wsrun": "^5.2.4",
"yarn-deduplicate": "^3.1.0"
},
"repository": "[email protected]:hypermedia-app/roadshow.git",
"author": "Tomasz Pluskiewicz <[email protected]>",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}