-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "scrollify-list",
"version": "0.6.1",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"list",
"scroll",
"pagination"
],
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/anttikon/scrollify-list"
},
"bugs": {
"url": "https://github.com/anttikon/scrollify-list/issues"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel ./src -d lib",
"dev": "nodemon src/index.js --exec \"npm run build\" --ignore lib",
"eslint": "eslint src"
},
"files": [
"lib/"
],
"dependencies": {
"prop-types": "^15.7.2",
"react-waypoint": "^9.0.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"nodemon": "^1.19.4",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}