-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.46 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.46 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
{
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://git@github.com:qlik-oss/picasso.js.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
"build:dev": "cross-env FORCE_COLOR=1 lerna run build --stream",
"build:watch": "cross-env FORCE_COLOR=1 lerna run build:watch --stream --no-sort",
"bump": "lerna publish --no-push",
"clean": "lerna clean",
"format": "prettier --write '**/*.js'",
"lint": "cross-env FORCE_COLOR=1 lerna run lint",
"link": "lerna link",
"test": "npm run test:unit && npm run test:component",
"test:component": "jest --testMatch **/test/component/**/*.comp.js",
"test:integration:ci": "node ./test/scripts/run-integration-tests.js",
"test:integration:local": "jest --config jest.integration.config.js --maxWorkers=1",
"test:integration:server": "rollup -c ./test/integration/rollup.config.js",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"prepare": "husky",
"types:check": "tsc --noEmit"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-transform-react-jsx": "7.28.6",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@qlik/eslint-config": "1.4.30",
"@rollup/plugin-terser": "1.0.0",
"babel-plugin-istanbul": "7.0.1",
"chai": "6.2.2",
"chai-subset": "1.6.0",
"cross-env": "7.0.3",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"extend": "3.0.2",
"globals": "17.5.0",
"globby": "16.2.0",
"husky": "9.1.7",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-junit": "16.0.0",
"jest-puppeteer": "11.0.0",
"jsdom": "29.0.2",
"lerna": "9.0.7",
"prettier": "3.8.2",
"pretty-quick": "4.2.2",
"puppeteer": "24.40.0",
"rollup": "2.80.0",
"@rollup/plugin-babel": "5.3.1",
"rollup-plugin-commonjs": "10.1.0",
"@rollup/plugin-node-resolve": "6.1.0",
"rollup-plugin-serve": "1.1.1",
"sinon": "21.1.2",
"sinon-chai": "4.0.1",
"typescript": "6.0.2"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}