-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "@fullstory/react-library",
"version": "1.0.1",
"description": "This component library assists in fullstory set up for react apps",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"clean": "rm -rf dist types",
"build": "npm run clean && tsc && rollup -c",
"test": "jest",
"pub": "npm run build && npm publish"
},
"author": "Fullstory",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.7.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"babel-jest": "^29.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"rollup": "^4.21.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^8.2.9",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.3.1",
"react-router-dom": "^6.26.1"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"type": "module",
"dependencies": {
"@fullstory/browser": "^2.0.5"
}
}