-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
112 lines (112 loc) · 4.19 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
110
111
112
{
"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:codesandbox": "yarn run locale:generate && cross-env NODE_ENV=production CODESANDBOX=1 FORCE_COLOR=1 lerna run build --stream --scope \"@nebula.js/{stardust,theme,locale,conversion,enigma-mocker}\"",
"install:codesandbox": "yarn --ignore-engines",
"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",
"lint:check": "eslint --print-config ./aw.config.cjs | eslint-config-prettier-check",
"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": "aw puppet -c aw.config.cjs --testExt '*.int.js' --glob 'test/mashup/**/*.int.js'",
"test:rendering": "playwright test --config=./test/rendering/playwright.config.rendering.js --quiet",
"test:integration": "aw puppet -c aw.config.cjs --testExt '*.int.js' --glob 'test/integration/**/*.int.js'",
"test:component": "aw puppet -c aw.config.cjs --testExt '*.comp.js' --glob 'test/component/**/*.comp.js'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/nebula.js.git"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint",
"prettier"
]
},
"devDependencies": {
"@after-work.js/aw": "6.0.14",
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/helper-plugin-utils": "7.25.9",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-react-jsx": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@playwright/test": "1.49.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"babel-loader": "9.2.1",
"babel-plugin-istanbul": "7.0.0",
"body-parser": "1.20.3",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"enigma.js": "2.14.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"express": "4.21.2",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-location-mock": "^2.0.0",
"lerna": "8.1.9",
"lint-staged": "^15.3.0",
"mocha-junit-reporter": "2.2.1",
"picasso-plugin-q": "2.5.0",
"picasso.js": "2.5.0",
"prettier": "3.4.2",
"puppeteer": "23.11.1",
"qix-faker": "0.3.0",
"rollup": "4.30.0",
"rollup-plugin-dependency-flow": "0.3.0",
"rollup-plugin-sass": "1.15.0",
"style-loader": "4.0.0",
"whatwg-fetch": "^3.6.20",
"yargs": "17.7.2"
},
"resolutions": {
"**/caniuse-lite": "1.0.30001690",
"**/react": "18.3.1",
"**/react-dom": "18.3.1",
"**/react-is": "18.3.1",
"@playwright/test": "1.49.1"
},
"workspaces": [
"generated/*",
"packages/*",
"commands/*",
"apis/*",
"test/component/*"
],
"packageManager": "[email protected]"
}