-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.69 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
{
"name": "next-mui-helper",
"version": "3.0.4",
"license": "MIT",
"homepage": "https://github.com/thundermiracle/next-mui-helper",
"description": "hocs for making material-ui project with next.js(SSR)",
"repository": {
"type": "git",
"url": "https://github.com/thundermiracle/next-mui-helper"
},
"bugs": {
"url": "https://github.com/thundermiracle/next-mui-helper/issues"
},
"keywords": [
"material-ui",
"nextjs",
"next-mui-helper",
"nprogress",
"hoc"
],
"author": "thundermiracle",
"main": "dist/index.js",
"files": [
"dist",
"es"
],
"scripts": {
"eslint": "eslint ./src",
"build:rm": "rm -rf dist/ && rm -rf es/",
"build:prd": "cross-env NODE_ENV=production babel src --out-dir ./dist --verbose",
"build:es": "cross-env NODE_ENV=es babel src --out-dir ./es --verbose",
"build": "npm run build:rm && npm run build:prd && npm run build:es",
"prettier": "prettier --write ./**/*.js ./**/*.json",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"jest": "jest",
"dev": "next",
"test": "cross-env NODE_ENV=production npm run eslint && cross-env NODE_ENV=production npm run jest"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"nprogress": "^0.2.0"
},
"peerDependencies": {
"@material-ui/core": "^4.0",
"next": "*"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.3.0",
"@material-ui/styles": "^4.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-import": "^1.12.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-react-require": "^3.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"next": "^9.0.2",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"regenerator-runtime": "^0.13.3",
"styled-jsx": "^3.2.1"
},
"jest": {
"transform": {}
}
}