-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.72 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.72 KB
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
{
"name": "@bufferapp/app-sidebar",
"version": "1.11.5",
"description": "Display application notifications",
"main": "lib/index.js",
"scripts": {
"storybook": "start-storybook -p 9002",
"lint": "eslint --ext .js test/ src/",
"test": "npm run lint && jest",
"test-watch": "jest --watch",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"author": "hharnisc@gmail.com",
"files": [
"lib",
"src"
],
"dependencies": {
"@bufferapp/async-data-fetch": "1.9.4",
"@bufferapp/keywrapper": "0.2.0",
"@bufferapp/session-manager": "0.7.1"
},
"devDependencies": {
"@bufferapp/components": "3.0.2",
"@storybook/addon-actions": "^3.4.11",
"@storybook/core": "^3.4.11",
"@storybook/react": "^3.4.11",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"deep-freeze": "0.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "7.11.1",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "5.0.7",
"react-router-redux": "4.0.8",
"storybook-addon-a11y": "^3.1.9"
},
"peerDependencies": {
"@bufferapp/components": "3.x",
"prop-types": "15.x",
"react": "16.x",
"react-dom": "16.x",
"react-redux": "5.x",
"react-router-redux": "4.x"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8"
},
"browsers": "> 3%"
}
],
"react"
],
"plugins": [
"transform-class-properties",
"transform-export-extensions",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true
},
"plugins": [
"prettier",
"react"
],
"rules": {
"prettier/prettier": [
2,
{
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"bracketSpacing": true
}
],
"no-unused-vars": 2
}
},
"jest": {
"transformIgnorePatterns": [
"/node_modules(?!/@bufferapp/components)/"
],
"setupTestFrameworkScriptFile": "<rootDir>/setupEnzyme.js",
"verbose": true
},
"publishConfig": {
"access": "public"
}
}