-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
126 lines (126 loc) · 3.91 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "reapop",
"version": "4.2.2",
"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": ">= 14.19.0"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/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"
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.5",
"@babel/eslint-parser": "7.23.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/preset-env": "7.23.5",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@redux-devtools/extension": "3.2.6",
"@teamsupercell/typings-for-css-modules-loader": "2.5.2",
"@testing-library/react": "14.1.2",
"@types/copy-webpack-plugin": "10.1.0",
"@types/express": "4.17.21",
"@types/faker": "6.6.9",
"@types/pretty": "2.0.3",
"@types/react": "18.2.39",
"@types/react-dom": "18.2.17",
"@types/react-redux": "7.1.31",
"@types/react-transition-group": "4.4.9",
"@types/redux": "3.6.0",
"@types/webpack": "5.28.5",
"@types/webpack-dev-middleware": "5.3.0",
"@types/webpack-hot-middleware": "2.25.9",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"babel-loader": "9.1.3",
"bootstrap": "5.3.2",
"codecov": "3.8.3",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.8.1",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-standard": "5.0.0",
"express": "4.18.2",
"file-loader": "6.2.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.1.0",
"prettier": "3.1.0",
"prettier-eslint": "16.1.2",
"pretty": "2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.3",
"react-refresh": "0.14.0",
"redux": "4.2.1",
"redux-mock-store": "1.5.4",
"sass": "1.69.5",
"sass-loader": "13.3.2",
"style-loader": "3.3.3",
"ts-node": "10.9.1",
"tsdx": "0.14.1",
"typescript": "5.3.2",
"url-loader": "4.1.1",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "6.1.1",
"webpack-hot-middleware": "2.25.4"
},
"dependencies": {
"react-transition-group": "4.4.5"
},
"lint-staged": {
"src/**/*.(ts|tsx|js|jsx)": "npm run lint"
}
}