-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "launchctl",
"private": true,
"logo": {
"file": "./logo.png"
},
"scripts": {
"build": "run-s build:*",
"build:codegen": "graphql-codegen",
"build:rollup": "rollup -c",
"build:netlify": "echo \"/* /index.html 200\" > build/_redirects",
"clean": "rimraf build",
"deploy": "echo No Deploy Script Yet",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"postinstall": "patch-package",
"prestart": "npm run build:codegen",
"start": "run-p start:*",
"start:codegen": "graphql-codegen --watch",
"start:tsc": "tsc --noEmit",
"start:wds": "wds --open --watch"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@apollo-elements/rollup-plugin-graphql": "^1.0.3",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/near-operation-file-preset": "^1.18.2",
"@graphql-codegen/typed-document-node": "^1.18.7",
"@graphql-codegen/typescript": "^1.22.2",
"@graphql-codegen/typescript-operations": "^1.18.1",
"@open-wc/rollup-plugin-html": "^1.2.5",
"@pwrs/eslint-config": "^0.0.21",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/leaflet": "^1.7.3",
"@typescript-eslint/parser": "^4.27.0",
"@web/dev-server": "^0.1.17",
"@web/dev-server-esbuild": "^0.2.12",
"@web/dev-server-rollup": "^0.3.4",
"@web/rollup-plugin-copy": "^0.3.0",
"esbuild": "^0.12.9",
"eslint": "^7.29.0",
"graphql": "^15.5.1",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"rimraf": "^3.0.2",
"rollup": "^2.52.2",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.4",
"web-component-analyzer": "^1.1.6"
},
"dependencies": {
"@apollo-elements/core": "^0.0.0",
"@apollo-elements/lit-apollo": "^3.3.0",
"@appnest/masonry-layout": "^2.0.8",
"@power-elements/card": "^0.1.0",
"geojson": "^0.5.0",
"leaflet": "^1.7.1",
"leaflet-element": "^0.0.22",
"lit": "^2.0.0-rc.2",
"pwa-helpers": "^0.9.1",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-lit-css": "^2.1.0",
"tslib": "^2.3.0",
"youtube-video-element": "0.0.5"
}
}