-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.38 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@mitodl/smoot-design",
"version": "0.0.0",
"packageManager": "yarn@4.5.3",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/mitodl/smoot-design"
},
"scripts": {
"start": "storybook dev -p 6006 --docs",
"build-storybook": "storybook build --docs",
"test": "jest",
"typecheck": "tsc --noEmit",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:type-augmentation": "cp -r src/type-augmentation dist/type-augmentation",
"build": "rm -rf dist && rm -f .tsbuildinfo && npm run build:esm && npm run build:cjs && npm run build:type-augmentation",
"lint-check": "eslint src/ .storybook/",
"lint-fix": "yarn lint-check --fix",
"fmt-check": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check .",
"fmt-fix": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write .",
"prepack": "yarn build"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./ai": {
"import": {
"types": "./dist/esm/ai.d.ts",
"default": "./dist/esm/ai.js"
},
"require": {
"types": "./dist/cjs/ai.d.ts",
"default": "./dist/cjs/ai.js"
},
"default": {
"types": "./dist/esm/ai.d.ts",
"default": "./dist/esm/ai.js"
}
},
"./type-augmentation": {
"import": "./dist/type-augmentation/index.d.ts",
"require": "./dist/type-augmentation/index.d.ts",
"default": "./dist/type-augmentation/index.d.ts"
}
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/base": "5.0.0-beta.67",
"@mui/lab": "6.0.0-beta.20",
"@mui/material": "^6.1.6",
"@mui/material-nextjs": "^6.1.6",
"@mui/system": "^6.1.6",
"@remixicon/react": "^4.2.0",
"@types/jest": "^29.5.14",
"ai": "^4.0.13",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react-markdown": "^9.0.1",
"tiny-invariant": "^1.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.0.0",
"@faker-js/faker": "^9.0.0",
"@jest/environment": "^29.7.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/preview-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/types": "^8.4.7",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/lodash": "^4.17.13",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/typescript-estree": "^8.13.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "8.57.1",
"eslint-config-mitodl": "^2.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-styled-components-a11y": "^2.1.35",
"eslint-plugin-testing-library": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.2",
"jest-fail-on-console": "^3.3.1",
"jest-watch-typeahead": "^2.2.2",
"next": "^15.0.2",
"prettier": "^3.3.3",
"react": "19.0.0",
"react-dom": "^19.0.0",
"react-router": "^6.22.2",
"react-router-dom": "^6.22.2",
"semantic-release": "^24.2.0",
"storybook": "^8.4.2",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"type-fest": "^4.26.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}