-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 2.06 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
{
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/Domino987/material-table-formik",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major -m 'Release v%s' && npm run git:push:tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s' && npm run git:push:tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s' && npm run git:push:tags",
"git:push:tags": "git push origin && git push origin --tags"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "material-table-formik",
"author": "Dominik Engel",
"keywords": [
"material-table-core",
"@mui",
"react",
"formik",
"YUP"
],
"description": "A material-table-core wrapper to display a dialog for add, edit and delete. It also allows Formik/YUP validation.",
"module": "dist/material-table-formik.esm.js",
"repository": {
"type": "git",
"url": "git://github.com/Domino987/material-table-formik.git"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"generate-changelog": "^1.8.0",
"@types/yup": "^0.29.6",
"husky": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@date-io/core": "^2.9.0",
"@material-table/core": "^0.2.29",
"@mui/material": "^5.0.0",
"formik": "^2.1.5"
}
}