forked from gramps-project/gramps-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.79 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
{
"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 --node-resolve --open --watch"
},
"devDependencies": {
"@open-wc/building-rollup": "^1.9.4",
"@open-wc/demoing-storybook": "^2.4.7",
"@open-wc/eslint-config": "^4.0.1",
"@open-wc/testing": "^2.5.32",
"@rollup/plugin-replace": "^2.3.4",
"@web/dev-server": "^0.0.29",
"@web/test-runner": "^0.10.2",
"deepmerge": "^4.2.2",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"fetch-mock": "^9.11.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"name": "gramps-js",
"version": "0.1.0",
"description": "Single-page app serving as frontend to the Gramps genealogical research system.",
"author": "David M. Straub",
"license": "AGPL",
"dependencies": {
"@material/mwc-button": "^0.20.0",
"@material/mwc-circular-progress": "^0.20.0",
"@material/mwc-drawer": "^0.20.0",
"@material/mwc-icon": "^0.20.0",
"@material/mwc-icon-button": "^0.20.0",
"@material/mwc-linear-progress": "^0.20.0",
"@material/mwc-list": "^0.20.0",
"@material/mwc-menu": "^0.20.0",
"@material/mwc-select": "^0.20.0",
"@material/mwc-slider": "^0.20.0",
"@material/mwc-snackbar": "^0.20.0",
"@material/mwc-tab": "^0.20.0",
"@material/mwc-tab-bar": "^0.20.0",
"@material/mwc-textfield": "^0.20.0",
"@material/mwc-top-app-bar": "^0.20.0",
"@mdi/js": "^5.8.55",
"@types/leaflet": "^1.5.19",
"dayjs": "^1.8.36",
"leaflet": "^1.7.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"pwa-helpers": "^0.9.1",
"rollup-plugin-copy": "^3.3.0"
}
}