-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
72 lines (72 loc) · 2.52 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
{
"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.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-react-jsx": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@rollup/plugin-terser": "0.4.4",
"babel-plugin-istanbul": "7.0.0",
"chai": "4.5.0",
"chai-subset": "1.6.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"extend": "3.0.2",
"globby": "14.0.2",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jest-puppeteer": "10.1.4",
"jsdom": "25.0.1",
"lerna": "8.1.9",
"prettier": "3.4.1",
"pretty-quick": "4.0.0",
"puppeteer": "23.9.0",
"rollup": "2.79.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.1.1",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"typescript": "5.7.2"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}