forked from fayster/react-toastify-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.17 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
{
"name": "react-toastify-redux",
"version": "1.0.0-rc.2",
"description": "react-toastify with Redux",
"main": "lib/index.js",
"typings": "src/definitions.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "npm run build:lib",
"build:lib": "rm -r -f -d ./lib && cross-env NODE_ENV=production tsc",
"build:umd": "rm -r -f -d ./dist && cross-env NODE_ENV=production webpack --config ./webpack.config.js -p",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fayster/react-toastify-redux.git"
},
"keywords": [
"react",
"redux",
"notification",
"react-toastify"
],
"author": "fayster <fayster91@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fayster/react-toastify-redux/issues"
},
"homepage": "https://github.com/fayster/react-toastify-redux#readme",
"dependencies": {
"@babel/cli": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@types/jest": "*",
"@types/react": "*",
"@types/react-redux": "^6.0.0",
"awesome-typescript-loader": "*",
"babel-jest": "*",
"babel-loader": "*",
"coveralls": "*",
"cross-env": "*",
"enzyme": "*",
"enzyme-adapter-react-16": "*",
"jest": "*",
"react": "*",
"react-dom": "*",
"react-redux": "*",
"react-toastify": "*",
"redux-mock-store": "*",
"rimraf": "*",
"ts-jest": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-redux": "*",
"react-toastify": "*"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
],
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
},
"devDependencies": {
"@types/react-dom": "^16.8.5",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.18"
}
}