-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.92 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
113
114
{
"name": "@liatrio/react-dora-charts",
"version": "0.0.0",
"description": "DORA Metric Charts for React",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
"files": [
"./dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/liatrio/react-dora-charts.git",
"directory": "."
},
"publishConfig": {
"access": "public",
"main": "dist/cjs/index.js",
"types": "dist/types.d.ts"
},
"scripts": {
"build": "npm run clean && tsc",
"rollup": "rollup -c --bundleConfigAsCjs",
"clean": "rimraf dist",
"test": "jest",
"playwright": "playwright test",
"playwright:smoke-test": "playwright test --grep @component-board --grep @dataset-low --grep @checkbox-always-show-details",
"playwright:show-report": "playwright show-report",
"playwright:update-snapshots": "playwright test --update-snapshots",
"playwright:docker:build": "docker build -t playwright-image -f playwright/playwright.dockerfile .",
"playwright:docker": "docker run -it --rm --name playwright -v $(pwd):/app playwright-image",
"playwright:docker:update-snapshots": "docker run -it --rm --name playwright -v $(pwd):/app playwright-image npm run playwright:update-snapshots",
"storybook": "storybook dev -p 6006",
"storybook-ci": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"prettier:check": "npx --yes prettier --check .",
"prettier:fix": "npx --yes prettier --write .",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"prepare": "husky"
},
"author": "",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^18.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@playwright/test": "^1.46.1",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@spotify/prettier-config": "^15.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.1.3",
"@storybook/cli": "^8.1.3",
"@storybook/manager-api": "^8.2.9",
"@storybook/react": "^8.1.3",
"@storybook/react-webpack5": "^8.1.3",
"@storybook/test": "^8.1.3",
"@storybook/theming": "^8.2.9",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/react": "^18.3.2",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom-global": "^3.0.2",
"pinst": "^3.0.0",
"react-datepicker": "^7.3.0",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-rebase": "^4.1.1",
"semantic-release": "^22.0.12",
"storybook": "^8.1.3",
"storybook-dark-mode": "^4.0.1",
"ts-jest": "^29.1.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"js-yaml": "^4.1.0",
"react-tooltip": "^5.28.0",
"recharts": "^2.12.7",
"uuid": "^10.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.18.0"
},
"prettier": "@spotify/prettier-config"
}