-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-use-form-hooks",
"version": "0.4.2",
"description": "React hooks for managing form state.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"test": "jest --watch --verbose=false",
"storybook": "start-storybook -p 6006",
"start": "concurrently -k --raw 'npm run storybook' 'npm run test'",
"test-once": "jest",
"build": "rollup -c",
"static": "build-storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonRublev360/react-use-form-hooks.git"
},
"keywords": [
"react",
"form",
"hooks"
],
"author": "anton.v.rublev@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/AntonRublev360/react-use-form-hooks/issues"
},
"homepage": "https://github.com/AntonRublev360/react-use-form-hooks#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"concurrently": "^4.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.3",
"moment": "^2.24.0",
"prettier": "^1.16.4",
"react": "16.8.1",
"react-dom": "16.8.1",
"rollup": "^1.1.2",
"validator": "^10.11.0"
},
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"react": "16.8.1"
},
"jest": {
"clearMocks": true,
"setupFiles": [
"./src/test/testSetup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test-once"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
}
}