-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
79 lines (79 loc) · 2.8 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
{
"name": "root",
"private": true,
"description": "Nightingale is a library of re-usable data visualisation Web Components",
"scripts": {
"prebuild": "npm run clean",
"build": "lerna run build",
"build:watch": "lerna exec -- rollup --config ../../rollup.config.mjs --watch",
"test": "yarn jest",
"clean": "rimraf packages/**/dist",
"clean:modules": "rimraf node_modules packages/**/node_modules",
"lint": "yarn lint:lit-analyzer && yarn lint:eslint",
"lint:eslint": "eslint 'packages/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer packages/*/src/**/*.{js,ts}",
"format": "prettier \"**/*.{cjs,html,js,md,ts}\" --ignore-path ./.eslintignore --write",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"serve": "wds --node-resolve --watch",
"serve:prod": "MODE=prod yarn serve",
"checksize": "rollup -c ; cat my-element.bundled.js | gzip -9 | wc -c ; rm my-element.bundled.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"license": "MIT",
"resolutions": {
"@storybook/{app}/webpack": "5.91.0"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@codesandbox/sandpack-react": "2.13.10",
"@custom-elements-manifest/analyzer": "0.10.2",
"@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",
"@storybook/addon-a11y": "6.5.16",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-storysource": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/web-components": "6.5.16",
"@types/d3": "7.4.3",
"@types/jest": "29.5.12",
"@types/lodash-es": "4.17.12",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"@web/dev-server": "0.4.4",
"@web/dev-server-rollup": "0.6.2",
"@webcomponents/webcomponentsjs": "2.8.0",
"babel-loader": "9.1.3",
"eslint": "8.57.0",
"eslint-plugin-jest": "28.5.0",
"jest": "29.7.0",
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.2",
"lit-analyzer": "2.0.3",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "4.17.2",
"rollup-plugin-css-only": "4.5.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-web-worker-loader": "1.6.1",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"tslib": "2.6.2",
"typescript": "5.4.5",
"webpack": "5.91.0"
},
"workspaces": [
"packages/*"
],
"customElements": "custom-elements.json",
"dependencies": {
"rimraff": "0.0.1-security"
}
}