-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.56 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.56 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
{
"name": "@aneuf/react-redux-snackbars",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Aaron Neufeld",
"email": "aaron.neufeld@uwaterloo.ca"
},
"keywords": [
"react redux snackbar",
"react",
"redux",
"reactjs",
"snackbar",
"snackbars",
"toaster",
"toastr",
"toasts",
"toast messages",
"material design",
"material ui"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"dependencies": {
"notistack": "^0.9.17",
"react-error-boundary": "^2.2.1",
"shortid": "^2.2.15"
},
"main": "dist/index.js",
"module": "dist/react-redux-snackbars.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/object.omit": "^3.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/shortid": "^0.0.29",
"husky": "^4.2.5",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
}
}