-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "react-valid-form-component",
"version": "1.4.7",
"description": "React form validation component.",
"main": "dist/index.js",
"scripts": {
"start": "npm run storybook",
"test": "jest",
"build": "npm run lint && babel src --out-dir dist --copy-files",
"build:minify": "npm run lint && babel --minified src --out-dir dist --copy-files",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint ./src/**/*.css",
"lint:js": "eslint ./src/**/*.js"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/demo"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.mock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/style.mock.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/barisates/react-valid-form.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"form",
"validation",
"validator",
"form-validation",
"form-validator",
"input-validation"
],
"author": {
"name": "Barış Ateş",
"email": "info@barisates.com",
"url": "http://barisates.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/barisates/react-valid-form/issues"
},
"homepage": "https://barisates.github.io/react-valid-form/",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-react": "^7.14.3",
"prop-types": "^15.7.2",
"react-dom": "latest",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"babel-eslint": "^10.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.9.0"
},
"dependencies": {
"react": "^16.9.0",
"react-select": "^3.1.0"
}
}