-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "react-caps",
"version": "0.1.2",
"keywords": [
"react",
"alert",
"confirm",
"prompt",
"react component",
"react-component",
"notification",
"dialogs"
],
"description": "A Confirm-Alert-Prompts(CAPs) library for React",
"main": "build/index.js",
"scripts": {
"build": "babel lib -d build",
"prepublish": "npm run build",
"build:watch": "babel lib -w -d build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "Pramjeet Ahlawat <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "^3.1.2",
"html-webpack-plugin": "^2.30.1",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"styled-jsx": "^2.0.1-beta.5",
"@storybook/react": "^3.2.12",
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-links": "^3.2.12"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.x || ^16.x",
"styled-jsx": "^2.x"
}
}