-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
131 lines (131 loc) · 4.17 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"storybook": "start-storybook",
"storybook:build": "build-storybook",
"build": "rimraf dist && rollup -c rollup.config.js",
"start:build": "npm run build && web-dev-server --root-dir dist --app-index index.html --open --compatibility none",
"start": "web-dev-server --app-index index.html --host 0.0.0.0 --node-resolve --open --watch"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@open-wc/building-rollup": "^1.9.4",
"@open-wc/demoing-storybook": "^2.4.6",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "^2.5.32",
"@rollup/plugin-replace": "^2.4.2",
"@web/dev-server": "^0.1.38",
"@web/dev-server-rollup": "^0.4.1",
"@web/test-runner": "^0.10.2",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"fetch-mock": "^9.11.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-version-injector": "^1.3.3"
},
"browser": {
"crypto": false
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"parser": "@babel/eslint-parser"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"semi": false,
"bracketSpacing": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"babel": {
"plugins": [
"@babel/plugin-syntax-import-assertions"
]
},
"name": "gramps-js",
"version": "24.12.2",
"description": "The frontend for the Gramps Web genealogical research system.",
"author": "David M. Straub",
"license": "AGPL",
"dependencies": {
"@hpcc-js/wasm": "^2.16.0",
"@maplibre/maplibre-gl-leaflet": "0.0.21",
"@material/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-circular-progress": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-drawer": "^0.27.0",
"@material/mwc-fab": "^0.27.0",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-icon": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-linear-progress": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-menu": "^0.27.0",
"@material/mwc-radio": "^0.27.0",
"@material/mwc-select": "^0.27.0",
"@material/mwc-slider": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@material/mwc-switch": "^0.27.0",
"@material/mwc-tab": "^0.27.0",
"@material/mwc-tab-bar": "^0.27.0",
"@material/mwc-textarea": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-top-app-bar": "^0.27.0",
"@material/web": "^2.2.0",
"@mdi/js": "^7.4.47",
"@openhistoricalmap/maplibre-gl-dates": "^1.2.1",
"@types/leaflet": "^1.9.12",
"d3": "^7.8.2",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0",
"dayjs": "^1.8.36",
"jsondiffpatch": "^0.6.0",
"jwt-decode": "^3.1.2",
"leaflet": "^1.9.4",
"lit": "^3.2.1",
"maplibre-gl": "^4.4.1",
"pwa-helper-components": "^0.2.10",
"pwa-helpers": "^0.9.1",
"tippy.js": "^6.3.7"
}
}