-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "react-finite-list",
"version": "1.0.10",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"lodash": "^4.17.10",
"prop-types": "^15.5.10",
"react-visibility-sensor": "^5.0.2"
},
"peerDependencies": {
"react": ">=15.5.4",
"react-dom": ">=15.5.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-ubergrape": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4"
},
"scripts": {
"build": "rollup -c",
"precommit": "lint-staged",
"prepublish": "yarn build",
"start": "rollup -c -w"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}