-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.29 KB
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
{
"name": "@statisticsfinland/pxvisualizer",
"version": "1.4.8",
"description": "Component library for visualizing PxGraf data",
"main": "./dist/pxv.cjs",
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-reporter.xml",
"indent": 4
},
"types": "./dist/types/index.d.ts",
"module": "./dist/pxv.module.js",
"unpkg": "./dist/pxv.umd.js",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/pxv.cjs",
"types": "./dist/types/index.d.ts",
"default": "./dist/pxv.modern.js"
},
"files": [
"dist"
],
"clean-publish": {
"fields": [
"scripts"
],
"tempDir": "package"
},
"scripts": {
"test": "jest",
"test:ci": "jest --reporters=default --reporters=jest-junit",
"test:watch": "jest --watchAll=true",
"build": "microbundle --globals highcharts/modules/accessibility.js=highchartsAccessibility,highcharts/modules/exporting.js=highchartsExporting,highcharts/modules/export-data.js=highchartsExportData,highcharts/modules/offline-exporting.js=highchartsOfflineExporting,decimal.js=Decimal,highcharts/modules/pattern-fill.js=patternFill",
"dev": "microbundle watch",
"storybook": "set NODE_OPTIONS=--openssl-legacy-provider && storybook dev -p 6006",
"storybook_legacy": "storybook dev -p 6006",
"build-storybook": "set NODE_OPTIONS=--openssl-legacy-provider && storybook build",
"prepublishOnly": "npm run build",
"version-helper": "node .github/scripts/version-helper.js"
},
"repository": {
"type": "git",
"url": "https://github.com/StatisticsFinland/PxVisualizer"
},
"author": "Statistics Finland",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.28.4",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
"@storybook/react": "^10.3.5",
"@storybook/react-webpack5": "^10.3.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/file-saver": "^2.0.7",
"@types/jest": "^30.0.0",
"@types/papaparse": "^5.3.15",
"@types/react": "^19.1.0",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"babel-loader": "^10.0.0",
"clean-publish": "^6.0.5",
"decimal.js": "^10.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^17.0.0",
"jest-sonar-reporter": "^2.0.0",
"jest-styled-components": "^7.2.0",
"microbundle": "^0.15.1",
"papaparse": "^5.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"semver": "^7.7.0",
"storybook": "^10.3.5",
"styled-components": "^6.4.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"uuid": "^14.0.0",
"yaml": "^1.10.3"
},
"dependencies": {
"decimal.js": "^10.5.0",
"fflate": "^0.8.2",
"highcharts": "^12.4.0",
"highcharts-react-official": "^3.2.2"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.1.0",
"react-dom": "^18.2.0 || ^19.1.0"
},
"keywords": [
"px-file",
"px",
"visualization"
],
"overrides": {
"brace-expansion": "^2.0.3",
"postcss": "^8.5.10",
"serialize-javascript": "^7.0.4",
"rollup-plugin-typescript2": {
"picomatch": "2.3.1"
}
}
}