-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.28 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "reapop",
"version": "4.3.0",
"description": "A simple & customizable notifications system for React",
"main": "dist/index.js",
"module": "dist/reapop.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build-demo": "NODE_ENV=production npx webpack --config=./demo/webpack.prod.config.ts",
"check-style": "eslint . --quiet --ext .ts,.tsx,.js,.jsx",
"check-types": "npx tsc && npx tsc --project demo/tsconfig.json",
"lint": "npm run check-style -- --fix",
"prepack": "NODE_ENV=production tsdx build",
"start": "ts-node demo/app.ts",
"test": "npm run check-style && npm run check-types && npx jest",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"prepare": "husky install"
},
"engines": {
"node": ">= 20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://LouisBarranqueiro@github.com/LouisBarranqueiro/reapop.git"
},
"keywords": [
"reapop",
"react",
"redux",
"mobx",
"notifications",
"notification",
"toast",
"toasts",
"component"
],
"author": "Louis Barranqueiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/LouisBarranqueiro/reapop/issues"
},
"homepage": "https://github.com/LouisBarranqueiro/reapop#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "7.27.2",
"@babel/core": "7.27.7",
"@babel/eslint-parser": "7.27.5",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@redux-devtools/extension": "3.3.0",
"@teamsupercell/typings-for-css-modules-loader": "2.5.2",
"@testing-library/react": "16.3.0",
"@types/express": "5.0.3",
"@types/pretty": "2.0.3",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"@types/react-redux": "7.1.34",
"@types/react-transition-group": "4.4.9",
"@types/webpack": "5.28.5",
"@types/webpack-hot-middleware": "2.25.9",
"babel-loader": "10.0.0",
"bootstrap": "5.3.7",
"copy-webpack-plugin": "11.0.0",
"css-loader": "7.1.2",
"eslint": "9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"express": "5.1.0",
"file-loader": "6.2.0",
"husky": "9.1.7",
"jest": "30.0.3",
"jest-cli": "30.0.3",
"jest-environment-jsdom": "30.0.2",
"lint-staged": "16.1.2",
"neostandard": "0.12.1",
"prettier": "3.6.2",
"prettier-eslint": "16.4.2",
"pretty": "2.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-redux": "9.2.0",
"react-refresh": "0.17.0",
"redux": "5.0.1",
"redux-mock-store": "1.5.5",
"sass": "1.89.2",
"sass-loader": "16.0.5",
"style-loader": "4.0.0",
"ts-node": "10.9.2",
"tsdx": "0.14.1",
"typescript": "5.8.3",
"typescript-eslint": "8.35.0",
"url-loader": "4.1.1",
"webpack": "5.99.9",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.2",
"webpack-hot-middleware": "2.26.1"
},
"dependencies": {
"react-transition-group": "4.4.5"
},
"lint-staged": {
"src/**/*.(ts|tsx|js|jsx)": "npm run lint"
}
}