-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
80 lines (80 loc) · 2.05 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
{
"name": "react-scroll-sync",
"version": "0.0.0-development",
"description": "Synchronize scroll positions across multiple scrollable containers",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run lint",
"build": "NODE_ENV=production npm run clean && webpack",
"prepare": "npm run build",
"lint": "eslint src --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"styleguide:server": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/okonet/react-scroll-sync.git"
},
"keywords": [],
"author": "Andrey Okonetchnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okonet/react-scroll-sync/issues"
},
"homepage": "https://github.com/okonet/react-scroll-sync#readme",
"eslintConfig": {
"extends": "okonet",
"rules": {
"react/forbid-prop-types": 0,
"react/jsx-wrap-multilines": 0
},
"import/no-extraneous-dependencies": [
"error",
{
"peerDependencies": [
"src/*.js"
],
"devDependencies": [
"**/*.test.js",
"**/*.spec.js"
]
}
]
},
"devDependencies": {
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-1": "6.16.0",
"eslint": "3.7.1",
"eslint-config-okonet": "1.1.1",
"jest": "16.0.0",
"lint-staged": "3.0.3",
"npmpub": "3.1.0",
"pre-commit": "1.1.3",
"prop-types": "15.5.10",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-styleguidist": "6.5.3",
"rimraf": "2.5.4",
"webpack": "2.7.0"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"dependencies": {
"prop-types": "^15.5.7"
}
}