-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "@moxy/next-with-router-ref",
"version": "1.0.0",
"description": "An alterntive to Next.js withRouter HOC that supports refs by forwarding them",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moxystudio/next-with-router-ref.git"
},
"keywords": [
"next",
"router",
"with-router",
"forward-ref",
"ref"
],
"author": "André Cruz <andre@moxy.studio>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moxystudio/next-with-router-ref/issues"
},
"homepage": "https://github.com/moxystudio/next-with-router-ref#readme",
"dependencies": {
"hoist-non-react-statics": "^3.3.1"
},
"peerDepedencies": {
"react": "^16.8.0",
"next": ">=8 <=9"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@moxy/babel-preset": "^3.2.1",
"@moxy/eslint-config": "^9.1.2",
"@moxy/jest-config": "^1.1.1",
"@testing-library/react": "^9.3.2",
"eslint": "^6.7.0",
"husky": "^3.1.0",
"jest": "^24.5.0",
"lint-staged": "^9.4.3",
"next": "^9.1.4",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"standard-version": "^7.0.1"
},
"scripts": {
"build:commonjs": "BABEL_ENV=commonjs babel src -d lib",
"build:es": "BABEL_ENV=es babel src -d es",
"build": "npm run build:commonjs && npm run build:es",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
}
}