-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.7 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
{
"name": "@sirenapp/react-inbox",
"version": "1.2.2",
"description": "React SDK designed to simplify the implementation and management of in-app notification inbox",
"files": [
"./dist",
"license",
"readme"
],
"types": "dist/index.d.ts",
"type": "module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"format": "prettier --write .",
"pre-commit": "lint-staged",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rm -rf dist && rollup -c",
"prepare": "husky",
"test": "npx jest",
"coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KeyValueSoftwareSystems/siren-react-inbox.git"
},
"keywords": [
"react",
"siren",
"notifications",
"sdk"
],
"author": "KeyValue Software Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/KeyValueSoftwareSystems/siren-react-inbox/issues"
},
"homepage": "https://github.com/KeyValueSoftwareSystems/siren-react-inbox#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/react-webpack5": "^7.6.12",
"@storybook/test": "^7.6.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/pubsub-js": "^1.8.6",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"rollup": "^4.9.6",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^7.6.12",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@sirenapp/js-sdk": "^1.2.3",
"pubsub-js": "^1.9.4"
}
}