This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.32 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
{
"name": "@bufferapp/notifications",
"version": "2.0.1",
"description": "Display application notifications",
"main": "lib/index.js",
"types": "types/index.d.ts",
"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": "[email protected]",
"files": [
"lib",
"src"
],
"dependencies": {
"@bufferapp/components": "^4.0.0",
"@bufferapp/keywrapper": "0.2.0",
"uuid": "3.3.2"
},
"devDependencies": {
"@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",
"eslint": "^5.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "7.11.1",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^7.1.1",
"storybook-addon-a11y": "^3.1.9"
},
"peerDependencies": {
"@bufferapp/components": "^4.0.0",
"react": "16.x",
"react-dom": "16.x",
"react-redux": "7.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": {
"verbose": true
},
"publishConfig": {
"access": "public"
}
}