-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.39 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
{
"name": "react-timezone-picker",
"version": "1.0.8",
"description": "React Timezone Picker",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/webpack --mode=production",
"deploy": "storybook-to-ghpages",
"start": "npm run storybook",
"storybook": "start-storybook -p 9001"
},
"author": "Ben Shope <[email protected]> (https://github.com/benshope)",
"keywords": [
"timezone",
"react",
"ui",
"component",
"react",
"small",
"simple"
],
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": "last 2 versions",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-a11y": "^5",
"@storybook/addon-actions": "^5",
"@storybook/addon-info": "^5",
"@storybook/addon-options": "^5",
"@storybook/addon-storyshots": "^5",
"@storybook/react": "^5",
"@storybook/storybook-deployer": "^2.8.1",
"babel-cli": "^6.26.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "1.16.4",
"react": "^16.8",
"react-dom": "^16.8",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
},
"esLintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "airbnb",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018
},
"plugins": [
"react"
],
"rules": {}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}