-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.21 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
109
110
111
112
113
114
115
116
117
118
119
120
{
"private": true,
"description": "",
"type": "module",
"scripts": {
"build": "yarn run locale:generate && cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
"build:dev": "yarn run locale:generate && cross-env NODE_ENV=development FORCE_COLOR=1 lerna run build --stream",
"build:watch": "FORCE_COLOR=1 lerna run build:watch --stream --concurrency 99 --no-sort",
"format": "prettier --write '**/**/*' --ignore-unknown",
"locale:verify": "node tools/verify-translations.cjs",
"locale:generate": "node apis/locale/scripts/generate-all.mjs",
"lint": "eslint packages apis commands --ext .js,.jsx",
"spec": "lerna run spec --stream --concurrency 99 && lerna run ts --stream --concurrency 99 ",
"mashup": "node scripts/start-mashup.js",
"test": "yarn run test:unit",
"test:unit": "jest --maxWorkers=2",
"test:update": "jest --maxWorkers=2 -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:mashup": "playwright test test/mashup --config=./test/mashup/playwright.config.mashup.js",
"test:rendering": "playwright test --config=./test/rendering/playwright.config.rendering.js --quiet",
"test:integration": "playwright test test/integration",
"test:component": "playwright test test/component",
"test:visual": "playwright test --config=./commands/serve/test/playwright.config.js",
"test:visual:update": "playwright test --config=./commands/serve/test/playwright.config.js --update-snapshots",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/nebula.js.git"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint",
"prettier"
]
},
"devDependencies": {
"@babel/cli": "7.29.7",
"@babel/core": "7.29.7",
"@babel/helper-plugin-utils": "7.29.7",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-react-jsx": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@jest/globals": "^30.4.1",
"@playwright/test": "^1.61.0",
"@rollup/plugin-babel": "7.1.0",
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"babel-loader": "10.1.1",
"babel-plugin-istanbul": "8.0.0",
"body-parser": "2.3.0",
"cross-env": "10.1.0",
"css-loader": "7.1.4",
"enigma.js": "2.14.0",
"eslint": "9.39.4",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mocha": "11.3.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"express": "5.2.1",
"globals": "^17.6.0",
"husky": "9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-junit": "^17.0.0",
"jest-location-mock": "^3.1.0",
"jimp": "^1.6.1",
"lerna": "9.0.7",
"lint-staged": "^17.0.8",
"mocha-junit-reporter": "2.2.1",
"picasso-plugin-q": "2.11.5",
"picasso.js": "2.11.5",
"prettier": "3.8.4",
"puppeteer": "25.1.0",
"qix-faker": "0.3.0",
"react-is": "19.2.7",
"rollup": "4.62.2",
"rollup-plugin-sass": "1.15.3",
"style-loader": "4.0.0",
"whatwg-fetch": "^3.6.20",
"yargs": "18.0.0"
},
"resolutions": {
"dts-dom": "3.7.0",
"caniuse-lite": "1.0.30001799",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-is": "19.2.7",
"@playwright/test": "^1.61.0",
"minimatch@npm:^3.0.0": "^3.1.5",
"minimatch@npm:^5.0.0": "^5.1.9",
"minimatch@npm:^9.0.0": "^9.0.7",
"minimatch@npm:^10.0.0": "^10.2.4",
"tar@npm:^7.0.0": "^7.5.11",
"glob@npm:^10.0.0": "^10.5.0",
"glob@npm:^11.0.0": "^11.1.0"
},
"workspaces": [
"packages/*",
"commands/*",
"apis/*",
"test/component/*"
],
"packageManager": "yarn@4.17.0"
}