-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "@openstax/ui-components",
"version": "1.11.2",
"license": "MIT",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"files": [
"dist",
"src"
],
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dist": "rm -rf ./dist && microbundle && sed -i '' 's/jsx-runtime/jsx-runtime.js/g' ./dist/index.modern.mjs",
"dev": "microbundle watch --no-compress",
"test": "jest --coverage .",
"lint": "eslint src/*ts",
"typecheck": "tsc --noEmit",
"ladle-build": "NODE_ENV=production yarn ladle build"
},
"peerDependencies": {
"@openstax/ts-utils": "*",
"react": "*",
"react-dom": "*",
"styled-components": "*"
},
"devDependencies": {
"@ladle/react": "^2.1.2",
"@openstax/ts-utils": "^1.8.0",
"@playwright/test": "^1.25.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^28.1.4",
"@types/node": "^18.7.5",
"@types/node-fetch": "^2.6.2",
"@types/react": "17.0.80",
"@types/react-dom": "^17.0.25",
"@types/react-test-renderer": "^17.0.2",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^29.3.1",
"jest-environment-node": "^29.6.2",
"microbundle": "^0.15.1",
"node-fetch": "<3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^16.8.0",
"react-test-renderer": "^17.0.2",
"sentry-testkit": "^5.0.5",
"styled-components": "^5.3.5",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@sentry/react": "^7.48.0",
"classnames": "^2.3.1",
"crypto": "npm:crypto-browserify@^3.12.0",
"react-aria": "^3.34.1",
"react-aria-components": "^1.3.1",
"stream": "npm:stream-browserify@^3.0.0"
}
}