-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
126 lines (126 loc) · 3.1 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-svg-flexbox",
"version": "1.1.0",
"description": "A React-based Flexbox layout container for SVG elements.",
"main": "dist/bundle.js",
"license": "MIT",
"author": "Peter Barker",
"repository": {
"type": "git",
"url": "https://github.com/zoopoetics/react-svg-flexbox"
},
"bugs": {
"url": "https://github.com/zoopoetics/react-svg-flexbox/issues"
},
"homepage": "https://zoopoetics.github.io/react-svg-flexbox/",
"files": [
"dist"
],
"scripts": {
"build": "cross-env BABEL_ENV=production rollup -c",
"build-storybook": "cross-env BABEL_ENV=production build-storybook",
"start": "cross-env BABEL_ENV=development start-storybook -p 9009",
"test": "cross-env BABEL_ENV=test jest"
},
"dependencies": {
"@babel/core": "7.4.4",
"@storybook/addon-actions": "5.1.11",
"@storybook/addon-links": "5.1.11",
"@storybook/addons": "5.1.11",
"@storybook/react": "5.1.11",
"add": "2.0.6",
"babel-eslint": "10.0.3",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-preset-react": "6.24.1",
"cross-env": "5.2.0",
"css-layout": "1.1.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-severe": "1.1.0",
"eslint-plugin-array-func": "3.1.3",
"eslint-plugin-eslint-comments": "3.1.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-lean-imports": "0.3.3",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"husky": "2.3.0",
"jest": "24.8.0",
"lint-staged": "9.2.5",
"prettier": "1.18.2",
"prop-types": "^15.6.2",
"react": "^15.3.0 || ^16.0",
"react-dom": "^15.3.0 || ^16.0",
"react-test-renderer": "16.8.6",
"request": "2.88.0",
"rollup": "1.12.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.0",
"webpack": "4.31.0",
"yarn": "1.17.3"
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": [
"severe"
],
"rules": {
"id-length": [
"error",
{
"exceptions": [
"r",
"x",
"y"
]
}
],
"max-classes-per-file": 0,
"max-lines": 0,
"react/forbid-component-props": 0,
"react/jsx-max-depth": 0,
"react/no-multi-comp": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/index.js"
],
"testMatch": [
"<rootDir>/src/**/?(*.)test.js"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.js$"
],
"moduleFileExtensions": [
"js"
]
},
"devDependencies": {
"rollup-plugin-terser": "4.0.4"
}
}