This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.36 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
{
"name": "@qlik/nebula-table-utils",
"license": "MIT",
"author": "QlikTech International AB",
"version": "2.6.8",
"description": "Common Components, Hooks and utils between `sn-table` and `sn-pivot-table` projects",
"keywords": [
"sn-table",
"sn-pivot-table",
"common"
],
"type": "module",
"main": "lib/index.js",
"module": "lib/index.es.js",
"jsnext:main": "lib/index.es.js",
"publishConfig": {
"access": "public"
},
"engines": {
"npm": ">=9",
"node": ">=18.16.0"
},
"files": [
"./lib/**",
"!**/bundle-analyzer-report.html",
"./README.md",
"./LICENSE",
"./package.json"
],
"scripts": {
"clear": "rimraf ./lib/*",
"build:prod": "pnpm run locale:generate && pnpm run clear & rollup -c --bundleConfigAsCjs",
"build:watch": "pnpm run locale:generate && nodemon --exec ./build-utils/build-copy.sh",
"lint": "eslint src/*",
"format:check": "prettier --check './src/**/*.{ts,tsx}' --ignore-unknown",
"types:check": "tsc --noEmit",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"locale:generate": "node src/locale/scripts/generate-all.mjs",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') console.log(e);}\""
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@qlik-trial/sprout": "3.4.0",
"@qlik/eslint-config": "0.7.1",
"@qlik/eslint-config-react": "0.1.0",
"@qlik/prettier-config": "0.4.6",
"@qlik/tsconfig": "0.2.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "11.0.2",
"@swc/core": "1.3.104",
"@swc/jest": "0.2.29",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/d3-color": "3.1.3",
"@types/jest": "29.5.11",
"@types/node": "20.11.5",
"@types/qlik-engineapi": "12.67.16",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/testing-library__jest-dom": "5.14.9",
"d3-color": "3.1.0",
"eslint": "8.56.0",
"eslint-plugin-prettier": "5.1.3",
"globby": "14.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nodemon": "3.0.3",
"prettier": "3.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.9.5",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-multi-input": "1.4.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-swc3": "0.11.0",
"rollup-plugin-visualizer": "5.12.0",
"semantic-release": "22.0.12",
"typescript": "5.3.3"
},
"packageManager": "pnpm@8.14.1",
"peerDependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.5",
"@mui/styled-engine-sc": "^6.0.0-alpha.12",
"@nebula.js/stardust": "4.9.0",
"@qlik-trial/sprout": "^3.4.0",
"qlik-chart-modules": "^0.59.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"pnpm": {
"overrides": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
}
}
}