-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
123 lines (123 loc) · 3.97 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
115
116
117
118
119
120
121
122
123
{
"name": "@mparticle/aquarium",
"version": "1.33.0",
"description": "mParticle Component Library",
"license": "Apache-2.0",
"keywords": [
"mparticle",
"analytics",
"cdp"
],
"repository": "https://github.com/mParticle/aquarium/",
"publishConfig": {
"access": "public"
},
"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"
],
"peerDependencies": {
"antd": ">=5.20.0",
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@faker-js/faker": "8.4.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@storybook/addon-essentials": "8.1.10",
"@storybook/addon-interactions": "8.1.10",
"@storybook/addon-links": "8.1.10",
"@storybook/addon-onboarding": "8.1.10",
"@storybook/blocks": "8.1.10",
"@storybook/react": "8.1.10",
"@storybook/react-vite": "8.1.10",
"@storybook/test": "8.1.10",
"@storybook/test-runner": "0.18.2",
"@types/jsdom": "21.1.7",
"@types/multer": "1.4.12",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@vitejs/plugin-react": "4.2.1",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"factory.ts": "1.4.1",
"http-server": "14.1.1",
"husky": "9.0.11",
"jsdom": "24.1.3",
"mdx-mermaid": "^2.0.1",
"multer": "1.4.5-lts.1",
"prettier": "3.3.2",
"remark-gfm": "^4.0.0",
"shx": "^0.3.4",
"storybook": "8.1.10",
"stylelint": "16.2.0",
"stylelint-config-recommended": "14.0.0",
"stylelint-config-standard": "36.0.0",
"stylelint-no-indistinguishable-colors": "2.1.0",
"type-fest": "^4.20.0",
"typescript": "5.3.3",
"vite": "5.0.13",
"vite-plugin-dts": "3.7.2",
"vite-plugin-svgr": "4.2.0",
"vitest": "1.3.1",
"wait-on": "7.2.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.18.0",
"@swc/core-linux-x64-gnu": "1.4.0",
"@swc/core-linux-x64-musl": "1.4.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 && 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 --ext .ts,.tsx \"src/**/*.{ts,tsx}\"\" \"stylelint \"**/*.css\"\"",
"lint:fix": "concurrently \"eslint --ext .ts,.tsx \"src/**/*.{ts,tsx}\" --quiet --fix\" \"stylelint \"**/*.css\" --fix\"",
"lint:staged": "eslint --quiet --fix --no-error-on-unmatched-pattern",
"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"
}
},
"dependencies": {
"lodash.clonedeep": "4.5.0"
}
}