-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "@mariosant/react-sweet-scroll",
"author": {
"name": "Marios Antonoudiou",
"email": "[email protected]",
"website": "https://mariosant.carrd.co"
},
"version": "0.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "xo",
"release": "standard-version",
"prepack": "babel -d dist/ src/index.jsx"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"delay": "^4.1.0",
"eslint-config-xo-react": "^0.19.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.2.0",
"jest": "^24.3.1",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-hooks-testing-library": "^0.4.1",
"react-testing-library": "^7.0.0",
"standard-version": "^6.0.1",
"xo": "^0.24.0"
},
"peerDependencies": {
"react": "^16.8.4"
},
"xo": {
"prettier": true,
"extends": [
"xo-react"
],
"envs": [
"jest",
"node",
"browser"
],
"rules": {
"camelcase": 1
}
}
}