This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "next-page-transitions",
"version": "1.0.0-beta.2",
"description": "Simple and customizable page transitions for Next.js apps",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"build:watch": "rimraf lib && babel src --out-dir lib --watch",
"prettier": "prettier --write \"src/**/*.js\" \"examples/**/*.js\"",
"prettier:diff": "prettier --list-different \"src/**/*.js\" \"examples/**/*.js\"",
"lint": "eslint --ext js src examples",
"lint:fix": "eslint --ext js . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/illinois/next-page-transitions.git"
},
"author": "Nathan Walters <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/illinois/next-page-transitions/issues"
},
"homepage": "https://github.com/illinois/next-page-transitions#readme",
"dependencies": {
"prop-types": "^15.6.1",
"react-transition-group": "^2.3.1"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.2.3",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^0.14.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}