-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
{
"name": "wc-notification-bell",
"type": "module",
"version": "0.1.23",
"repository": {
"type": "git",
"url": "https://github.com/notifir/widget"
},
"keywords": [
"webcomponents",
"lit"
],
"exports": {
".": "./dist/index.es.js"
},
"main": "dist/index.es.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"analyze": "custom-elements-manifest analyze --globs 'src/index.ts' --outdir dist",
"start": "vite",
"build": "tsc && vite build && npm run copy:demo && npm run docs:gen",
"copy:demo": "cp demo/* dist/",
"preview": "vite preview",
"docs:gen": "npm run analyze && esmo scripts/gen-docs.ts",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"i18n:extract": "lit-localize extract",
"i18n:build": "lit-localize build",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"test": "jest"
},
"dependencies": {
"@apollo-elements/lit-apollo": "^5.0.3",
"@apollo/client": "^3.6.6",
"@lit/localize": "^0.11.3",
"graphql-ws": "^5.8.2",
"lit": "^2.2.3",
"mock-apollo-client": "^1.2.1"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.26.0",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@custom-elements-manifest/analyzer": "^0.5.7",
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@jest/types": "^28.1.3",
"@lit/localize-tools": "^0.6.4",
"@ngneat/falso": "^6.1.0",
"@types/jest": "^28.1.8",
"@types/node": "^17.0.30",
"@types/ws": "^8.5.3",
"cypress": "^10.6.0",
"eslint": "^8.22.0",
"esno": "^0.14.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^12.4.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "~4.7.4",
"vite": "^2.9.6"
},
"lint-staged": {
"*": "eslint"
},
"customElements": "dist/custom-elements.json"
}