-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.18 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@mparticle/aquarium",
"version": "2.4.0-fix-form-static-member-types.1",
"description": "mParticle Component Library",
"license": "Apache-2.0",
"keywords": [
"mparticle",
"analytics",
"cdp"
],
"repository": "https://github.com/mParticle/aquarium/",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/aquarium.umd.cjs",
"module": "dist/aquarium.js",
"files": [
"dist/aquarium.umd.cjs",
"dist/aquarium.js",
"dist/index.d.ts",
"dist/style.css",
"dist/style.ts",
"dist/src"
],
"peerDependencies": {
"antd": ">=6.3.1",
"dayjs": "1.11.x",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@ant-design/x": "2.4.0",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@faker-js/faker": "10.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@storybook/addon-docs": "10.2.0",
"@storybook/react-vite": "10.2.0",
"@storybook/test-runner": "0.24.2",
"@types/jsdom": "27.0.0",
"@types/lodash": "4.17.23",
"@types/multer": "2.0.0",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"@vitest/coverage-v8": "4.0.17",
"antd": "6.3.4",
"concurrently": "9.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"factory.ts": "1.4.2",
"highcharts": "12.5.0",
"http-server": "14.1.1",
"husky": "9.1.7",
"jsdom": "27.4.0",
"mdx-mermaid": "2.0.3",
"multer": "2.0.2",
"postcss": "8.5.6",
"postcss-nested": "7.0.2",
"prettier": "3.8.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"remark-gfm": "4.0.1",
"semantic-release": "25.0.2",
"shx": "0.4.0",
"storybook": "10.2.0",
"stylelint": "17.0.0",
"stylelint-config-recommended": "18.0.0",
"stylelint-config-standard": "40.0.0",
"type-fest": "5.4.1",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vite-plugin-svgr": "4.5.0",
"vitest": "4.0.17",
"wait-on": "9.0.3",
"zod": "3.25.76"
},
"optionalDependencies": {
"@esbuild/darwin-x64": "0.27.2",
"@rollup/rollup-linux-x64-gnu": "4.55.3",
"@swc/core-linux-x64-gnu": "1.15.10",
"@swc/core-linux-x64-musl": "1.15.10"
},
"dependencies": {
"@fontsource/courier-prime": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@types/fnv-plus": "1.3.2",
"@untitledui/icons": "0.0.21",
"fnv-plus": "1.3.1",
"lodash.clonedeep": "4.5.0"
},
"scripts": {
"prepare": "husky",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run build-storybook --quiet && NODE_NO_WARNINGS=1 npx http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && npm run test-storybook\"",
"test-unit": "vitest",
"build": "vite build && node scripts/fix-type-imports.js && npm run tokens-to-css && shx cp src/styles/*.css dist && shx cp src/styles/style.ts dist",
"build-dist": "sh ./scripts/build-dist.sh",
"build-storybook": "storybook build",
"lint": "concurrently \"eslint src\" \"stylelint \"**/*.css\"\"",
"lint:fix": "concurrently \"eslint src --quiet --fix\" \"stylelint \"**/*.css\" --fix\"",
"lint:staged": "eslint --quiet --fix",
"stylelint:staged": "stylelint --allow-empty-input --fix ",
"tokens-to-css": "npx style-dictionary build --config ./style-dictionary.json",
"icons-prettifier": "node ./server/prettify-server.cjs"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:staged",
"prettier --write"
],
"*.{css}": [
"npm run stylelint:staged"
],
"*.{json,yml,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}