-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.29 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
{
"name": "@mozilla-services/ads-eng-react-components",
"version": "0.5.6",
"description": "React component library for various ads-eng products",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-services/ads-eng-react-components.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"build": "vite build",
"check:types": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . && npm run check:types",
"lint:fix": "eslint . --fix && npm run check:types",
"test": "NODE_ENV=test jest --coverage",
"test:ci": "NODE_ENV=test jest --coverage",
"test:watch": "jest --watch --coverage --maxWorkers=25%",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/lab": "^7.0.0-beta.14",
"@mui/material": "^7.2.0",
"axios": "^1.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-resizable-panels": "^4.12.3",
"react-router-dom": "^6.30.4",
"react-toastify": "^10.0.6"
},
"peerDependenciesMeta": {},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^9.29.0",
"@jest/globals": "^29.7.0",
"@mui/icons-material": "^7.2.0",
"@mui/lab": "^7.0.0-beta.14",
"@mui/material": "^7.2.0",
"@storybook/addon-a11y": "^10.5.10",
"@storybook/addon-docs": "^10.5.10",
"@storybook/react-vite": "^10.5.10",
"@stylistic/eslint-plugin": "^5.0.0",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.13",
"@types/node": "^24.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^4.3.1",
"axios": "^1.16.0",
"csstype": "^3.2.3",
"eslint": "^9.28.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^10.5.10",
"globals": "^15.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jest-transform-stub": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-resizable-panels": "^4.12.3",
"react-router-dom": "^6.30.4",
"react-toastify": "^10.0.6",
"storybook": "^10.5.10",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.3"
},
"allowScripts": {
"@swc/core@1.16.1": true,
"esbuild@0.28.2": true
},
"dependencies": {
"csstype": "^3.1.3"
}
}