-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.24 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
{
"name": "http-status-toast",
"version": "1.5.0",
"description": "A simple toast notification according to your http req response!",
"source": "src/index.d.cts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "tsup",
"build2": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninamarq/http-status-toast.git"
},
"keywords": [
"status-toast",
"http",
"status",
"toast",
"alert",
"general",
"notification"
],
"author": "Marina Marques - ninamarq",
"license": "MIT",
"bugs": {
"url": "https://github.com/ninamarq/http-status-toast/issues"
},
"homepage": "https://github.com/ninamarq/http-status-toast#readme",
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@storybook/addon-essentials": "^7.0.23",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-links": "^7.0.23",
"@storybook/addons": "^7.0.23",
"@storybook/blocks": "^7.0.23",
"@storybook/react": "^7.0.23",
"@storybook/react-webpack5": "^7.0.23",
"@storybook/testing-library": "^0.0.14-next.2",
"@swc/core": "^1.3.68",
"@types/aria-query": "^5.0.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"postcss-preset-env": "^9.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"storybook": "^7.0.23",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"typescript-eslint": "^0.0.1-alpha.0",
"webpack": "^5.88.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"postcss": "^8.4.25",
"react-icons": "^4.10.1"
}
}