-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.07 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
81
82
83
84
85
86
87
88
{
"name": "react-with-responsive-ssr",
"version": "1.0.5",
"description": "High-Order Component to display based on media breakpoints with support for Server-Side Rendering",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Fixter",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/kametventures/react-with-responsive-ssr.git"
},
"keywords": [
"react",
"responsive",
"react-responsive",
"react-with-responsive",
"ssr",
"media-query",
"media-queries",
"matchMedia",
"next",
"nextjs",
"next.js",
"css"
],
"scripts": {
"build": "webpack --mode production",
"prepare": "npm run build",
"release": "np --no-release-draft",
"test": "run-s test:lint test:coverage",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:lint": "eslint .",
"test:lint:fix": "eslint --fix .",
"test:lint:staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:lint:staged"
}
},
"lint-staged": {
"*.js": [
"npm run test:lint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"peerDependencies": {
"react": "^16.12.0",
"styled-jsx": "^3.2.1"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@fixter/eslint-config-react": "^0.0.8",
"@testing-library/react": "^9.4.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.10",
"jest": "^24.9.0",
"lint-staged": "^10.0.1",
"styled-jsx": "^3.2.1",
"np": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pretty": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}