-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.12 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
{
"name": "react-toast-wnm",
"version": "1.1.2",
"description": "",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"/build"
],
"scripts": {
"build": "rm -rf build && rollup -c && tsc --emitDeclarationOnly",
"format": "prettier-standard --format",
"storybook": "start-storybook -p 9009 -s public",
"deploy-storybook": "storybook-to-ghpages --out=dist_storybook --existing-output-dir=dist_storybook --ci",
"build-storybook": "build-storybook -c .storybook -o dist_storybook",
"test": "jest --watch --runInBand --detectOpenHandles",
"coverage": "jest --coverage --runInBand",
"lint": "eslint './src/**/*.{ts,tsx}'"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.4",
"@storybook/addon-controls": "^6.0.21",
"@storybook/addon-docs": "^6.0.21",
"@storybook/addon-storyshots": "^6.0.21",
"@storybook/addon-storysource": "^6.0.21",
"@storybook/addons": "^6.0.21",
"@storybook/react": "^6.0.16",
"@storybook/storybook-deployer": "^2.8.6",
"@storybook/theming": "^6.0.21",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "10.x",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "6.x",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"jest": "^26.4.2",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"prettier": "2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.25.3",
"standard": "^14.3.1",
"ts-jest": "^26.2.0",
"typescript": "^3.7.3"
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
],
"rootDir": "./"
},
"standard": {
"ignore": [
"node_modules/",
"build/"
]
},
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
],
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"dependencies": {
"typestyle": "^2.1.0",
"uuid": "^8.3.0"
},
"keywords": [
"toast",
"toasts",
"notification",
"notifications",
"react-component",
"javascript",
"custom-toast",
"custom-toasts",
"runner",
"spies",
"stubs"
]
}