-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "toasted-notes",
"version": "3.2.0",
"description": "Flexible, easy to implement toast notifications for react",
"main": "commonjs/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"style": "src/styles.css",
"scripts": {
"build-library-commonjs": "rimraf ./commonjs && tsc -p tsconfig.lib.json --module commonjs --outDir commonjs",
"build-library": "rimraf ./lib && tsc -p tsconfig.lib.json --outDir ./lib",
"prepublishOnly": "yarn run build-library && yarn run build-library-commonjs",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook"
},
"dependencies": {
"@reach/alert": "^0.1.2",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@storybook/addon-actions": "^5.0.5",
"@storybook/addon-links": "^5.0.5",
"@storybook/react": "^5.0.5",
"babel-loader": "^8.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^2.1.5",
"react-spring": "^8.0.0",
"rimraf": "^2.6.3",
"typescript": "^3.5.0"
},
"author": "Ben McMahen <[email protected]>",
"homepage": "https://github.com/bmcmahen/toasted-notes",
"license": "MIT",
"repository": "",
"keywords": [
"react-component",
"toast",
"notifications"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}