-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
136 lines (136 loc) · 4.12 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "react-breeze-form",
"version": "0.0.0-development",
"description": "Quickly render bootstrap styled react hook forms using a schema file.",
"main": "dist/index.jsx",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:css": "node-sass --importer node_modules/node-sass-magic-importer/dist/cli.js --include-path scss src/main.scss dist/react-breeze-form.css",
"build:min": "rollup -c rollup.min.config.js",
"build:tsc": "tsc -p ./tsconfig.json --sourcemap",
"build:watch": "rollup -c -w",
"build": "rollup -c",
"bundlesize": "npm run build:min && bundlesize",
"clean": "rimraf dist/*",
"commit": "git-cz",
"format": "prettier --write \"**/*.+(ts|tsx|md|yml|json)\"",
"lint": "eslint ./src --ext .jsx,.ts --ignore-pattern *.test.ts",
"postrelease": "npm publish && git push --follow-tags",
"prepublishOnly": "npm run format && npm run lint && npm test && npm run clean npm run build:css && npm run build",
"semantic-release": "semantic-release",
"test:update": "npm test -- --updateSnapshot --coverage",
"test": "NODE_ENV=test jest --config=jest.config.js --coverage --forceExit --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/start-at-root/react-breeze-form.git"
},
"keywords": [
"react",
"forms",
"schema",
"file",
"bootstrap",
"react-hook-form",
"quick",
"config"
],
"author": "J Lison <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/start-at-root/react-breeze-form/issues"
},
"homepage": "https://github.com/start-at-root/react-breeze-form#readme",
"peerDependencies": {
"compass-mixins": ">=0.12.10",
"react-dom": ">=16.13.0",
"react-hook-form": "=>5.1.0",
"react-i18next": "=>11.3.0",
"react-select": ">=3.0.8",
"react": ">=16.13.0",
"reactstrap": ">=8.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint --fix",
"prettier --config ./.prettierrc --write"
]
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.23",
"@types/react-i18next": "^8.1.0",
"@types/react-select": "^3.0.11",
"@types/reactstrap": "^8.4.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"all-contributors-cli": "^6.14.0",
"bundlesize": "^0.18.0",
"commitizen": "^4.0.3",
"compass-mixins": "^0.12.10",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"node-sass": "^4.13.1",
"node-sass-magic-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-hook-form": "^5.1.1",
"react-i18next": "^11.3.3",
"react-select": "^3.0.8",
"reactstrap": "^8.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"semantic-release": "^17.0.4",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.15.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/git",
"@semantic-release/npm"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}