-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.49 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-toasted",
"version": "1.0.6",
"description": "React.js Toast Component",
"author": "s4l1h",
"keywords": [
"react.js",
"toast",
"toasted",
"toastr"
],
"main": "lib/react-toasted.js",
"dependencies": {
"react": "^16.0.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-info": "^5.1.10",
"@storybook/addon-knobs": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/react": "^5.1.10",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.9",
"@typescript-eslint/eslint-plugin": "1.x",
"@typescript-eslint/parser": "1.x",
"animate.css": "^3.7.2",
"babel-eslint": "10.x",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"eslint": "6.x",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^5.0.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"react-dom": "^16.9.0",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-scss": "^1.0.2",
"storybook-addon-jsx": "^7.1.5",
"storybook-readme": "^5.0.6"
},
"files": [
"lib/react-toasted.js",
"lib/react-toasted.css",
"src"
],
"scripts": {
"build": "rollup -c;rm lib/style.js",
"clear": "rm lib/*",
"test": "jest",
"lint": "eslint src/*.js src/components/*.js src/utils/*.js __tests__/*.js --fix",
"format": "prettier src/*.js src/components/*.js src/utils/*.js __tests__/*.js --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"bugs": {
"url": "https://github.com/s4l1h/react-toasted/issues"
},
"homepage": "https://github.com/s4l1h/react-toasted#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/s4l1h/react-toasted.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}