-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.45 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
{
"name": "semantic-ui-react-validated-form",
"description": "A Validated form that consumes joi schemas and semantic ui components",
"author": "Jesse Harlin",
"user": "the-simian",
"version": "0.7.2",
"scripts": {
"start": "catalog start docs",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:lint": "eslint . --ignore-path .gitignore",
"gh-pages": "catalog build docs",
"gh-pages:deploy": "gh-pages -d docs/build",
"dist:es6": "del-cli ./dist-es6 && cross-env BABEL_ENV=es6 babel ./src --out-dir ./dist-es6",
"dist:modules": "del-cli ./dist-modules && cross-env BABEL_ENV=modules babel ./src --out-dir ./dist-modules",
"preversion": "npm run test",
"prepublishOnly": "npm run dist:es6 && npm run dist:modules",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"main": "dist-modules",
"module": "dist-es6",
"jsnext:main": "dist-es6",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-decorators": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-classes": "7.2.0",
"@babel/plugin-transform-destructuring": "7.2.0",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/plugin-transform-react-display-name": "7.2.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.2.0",
"@storybook/react": "^4.1.9",
"@svgr/webpack": "4.1.0",
"@types/lodash-es": "^4.17.1",
"autoprefixer": "9.4.2",
"babel-eslint": "10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "8.0.4",
"catalog": "^3.6.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gh-pages": "^2.0.1",
"git-prepush-hook": "^1.0.2",
"import-sort-style-module": "^5.0.0",
"jest": "^23.6.0",
"purecss": "^1.0.0",
"react": "^16.6.3",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.6.3",
"react-github-corner": "^2.3.0",
"rimraf": "^2.6.2",
"sync-exec": "^0.6.2",
"webpack": "^4.27.1"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.2"
},
"repository": {
"type": "git",
"url": "[email protected]:simiancraft/semantic-ui-react-validated-form.git"
},
"homepage": "https://github.com/simiancraft/semantic-ui-react-validated-form",
"bugs": {
"url": "https://github.com/simiancraft/semantic-ui-react-validated-form/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"boilerplate"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"babel-core": "^7.0.0-bridge.0",
"joi-browser": "^13.4.0",
"lodash": "^4.17.11",
"semantic-ui-react": "^0.86.0"
}
}