-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 2.59 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
{
"name": "@caraml-dev/ui-lib",
"version": "1.13.1",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20.13.1"
},
"scripts": {
"prebuild": "yarn clean",
"build": "rollup -c --bundleConfigAsCjs",
"clean": "rm -rf dist",
"start": "yarn build --watch",
"lint": "eslint --max-warnings 0 src",
"lint:fix": "eslint --fix src",
"prepublishOnly": "yarn build",
"link": "yarn link",
"link:react": "cd ../../node_modules/react && yarn link",
"link:react-dom": "cd ../../node_modules/react-dom && yarn link",
"prelink": "yarn link:react && yarn link:react-dom",
"unlink": "yarn unlink",
"unlink:react": "cd ../../node_modules/react && yarn unlink",
"unlink:react-dom": "cd ../../node_modules/react-dom && yarn unlink",
"preunlink": "yarn unlink:react && yarn unlink:react-dom"
},
"dependencies": {
"@react-oauth/google": "0.12.1",
"classnames": "^2.5.1",
"json-bigint": "1.0.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"proper-url-join": "2.1.1",
"query-string": "^9.0.0",
"react-collapsed": "^4.1.2",
"react-ellipsis-text": "^1.2.1",
"react-fast-compare": "^3.2.2",
"react-scroll": "^1.9.0",
"react-stickynode": "^4.1.1",
"resize-observer-polyfill": "^1.5.1",
"yup": "^1.4.0"
},
"peerDependencies": {
"@elastic/eui": "^94.5.2",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@sentry/browser": "8.5.0",
"moment": "^2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-export-default-from": "^7.24.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-class-properties": "^7.24.6",
"@babel/plugin-transform-private-property-in-object": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"node-importer": "^1.0.2",
"rollup": "^4.18.0",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.12.22",
"rollup-pluginutils": "^2.8.2",
"sass": "^1.77.2"
}
}