-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.15 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
{
"name": "@paulscherrerinstitute/databuffer-ui",
"version": "4.8.1",
"description": "Databuffer UI",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rm -rf public/scripts/ node_modules/.cache/ .nyc_output/",
"deps:check": "npm-check-updates",
"deps:update-to-latest": "npm-check-updates -u && npm install",
"dev-backend:queryrest": "node dev-backend-queryrest.js",
"download-polyfills": "curl 'https://polyfill.io/v3/polyfill.min.js?flags=gated&features=WebAnimations,requestIdleCallback' -o public/polyfill.min.js",
"source": "source-map-explorer public/scripts/databuffer-ui.min.js",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:prettier": "prettier 'src/**/*.ts' --list-different || ( echo '↑↑↑ these files are not well formatted ↑↑↑' && exit 1 )",
"format:eslint": "eslint 'src/**/*.ts' --fix",
"format:prettier": "prettier 'src/**/*.ts' --write",
"test": "jest",
"test:coverage": "jest --coverage",
"test:tsc": "tsc --noEmit",
"release": "standard-version --dry-run",
"release:prod": "standard-version"
},
"private": true,
"author": "Paul Scherrer Institute, Switzerland (https://www.psi.ch/)",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/file-saver": "^2.0.5",
"@types/pluralize": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"browser-sync": "^2.27.9",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"connect-logger": "0.0.1",
"dotenv": "^15.0.0",
"eslint": "^8.8.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"npm-check-updates": "^12.2.1",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"source-map-explorer": "^2.5.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@captaincodeman/rdx": "^1.0.0-rc.9",
"@captaincodeman/router": "^1.0.3",
"@material/mwc-button": "^0.25.3",
"@material/mwc-checkbox": "^0.25.3",
"@material/mwc-circular-progress": "^0.25.3",
"@material/mwc-dialog": "^0.25.3",
"@material/mwc-formfield": "^0.25.3",
"@material/mwc-icon-button": "^0.25.3",
"@material/mwc-list": "^0.25.3",
"@material/mwc-menu": "^0.25.3",
"@material/mwc-radio": "^0.25.3",
"@material/mwc-select": "^0.25.3",
"@material/mwc-snackbar": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"@material/mwc-top-app-bar-fixed": "^0.25.3",
"@paulscherrerinstitute/databuffer-query-js": "^0.7.6",
"@paulscherrerinstitute/databuffer-web-components": "^1.0.4",
"@types/jest": "^27.4.0",
"date-fns": "^2.28.0",
"file-saver": "^2.0.5",
"highcharts": "^9.3.3",
"jest": "^27.4.7",
"lit": "^2.1.2",
"pluralize": "^8.0.0",
"reselect": "^4.1.5",
"reselect-tools": "0.0.7",
"tslib": "^2.3.1"
}
}