-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·78 lines (78 loc) · 1.99 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
{
"name": "noti-react",
"version": "0.2.0",
"description": "Simple notification component",
"main": "dist/Notification.js",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-vite": "^8.3.0",
"@storybook/test": "^8.3.0",
"@vitejs/plugin-react": "^4.3.3",
"cross-spawn": "^6.0.6",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pre-commit": "^1.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"storybook": "^8.3.0",
"vite": "^6.3.5"
},
"scripts": {
"test": "jest",
"dev": "storybook dev -p 6006",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint:fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"storybook:build": "storybook build -o .out",
"transpile": "babel src -d dist && node ./copyFiles.js",
"prepublishOnly": "npm run lint && npm run transpile"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ODudek/noti-react.git"
},
"keywords": [
"react",
"notification",
"notify",
"react-component",
"react-notification",
"alert"
],
"files": [
"LICENSE",
"README.md",
"dist/",
"package.json",
"index.d.ts"
],
"author": "ODudek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ODudek/noti-react/issues"
},
"homepage": "https://github.com/ODudek/noti-react#readme",
"overrides": {
"cross-spawn": "^6.0.6"
}
}