forked from gerhat/material-ui-formik-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "material-ui-formik-components",
"version": "0.4.0",
"author": "Gerasimos Chatzidamianos (https://github.com/gerhat)",
"license": "MIT",
"keywords": [
"react",
"formik",
"material-ui",
"form component",
"form",
"react-select",
"autocomplete",
"material-ui-pickers",
"material-ui-chip-input"
],
"repository": {
"type": "git",
"url": "https://github.com/gerhat/material-ui-formik-components.git"
},
"peerDependencies": {
"@material-ui/core": ">=4.0.0",
"formik": ">=1.4.2",
"react": ">=16.8",
"react-dom": ">=16.8",
"react-select": ">=2",
"@material-ui/pickers": ">=3",
"material-ui-chip-input": ">=1.0.0-beta.16"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.0.1",
"babel-eslint": "^10.0.1",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-module-utils": "^2.4.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-watch": "^5.1.2",
"formik": "^1.5.7",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"material-ui-chip-input": "^1.0.0-beta.17",
"@material-ui/pickers": "^3.0.0",
"path": "^0.12.7",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-select": "^3.0.3",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3"
},
"main": "index.js",
"module": "index.es.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build:es2015": "cross-env NODE_ENV=production babel --config-file ./babel.config.js ./src --out-dir ./dist --ignore *.test.js* --copy-files",
"build:es2015modules": "cross-env NODE_ENV=production BABEL_ENV=modules babel --config-file ./babel.config.js ./src/index.js --out-file ./dist/index.es.js --copy-files",
"build:copy-files": "babel-node --config-file ./babel.config.js ./scripts/copy-files.js",
"build:all": "npm run build:es2015 && npm run build:es2015modules && npm run build:es && npm run build:umd && npm run build:copy-files",
"build": "npm run build:es2015 && npm run build:es2015modules && npm run build:copy-files",
"link": "npm run build && npm link dist",
"lint": "eslint src/**/*.{js,jsx}",
"lint:watch": "esw -w src/**/*.{js,jsx}",
"lint:fix": "eslint src/ --fix src/**/*.{js,jsx}",
"release": "npm run build && npm publish dist",
"release:test": "npm run release --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "NODE_ENV=production lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
}
}