-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.15 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
{
"name": "@indec/react-native-form-builder",
"version": "1.1.0",
"description": "A library to generate forms in react native based on a json description",
"private": false,
"main": "src/index.js",
"scripts": {
"test": "mocha",
"eslint": "eslint ./",
"precommit": "npm run eslint && npm test",
"commitmsg": "commitlint -e"
},
"dependencies": {
"@indec/react-native-commons": "^1.2.0",
"@indec/react-native-md-textinput": "^3.1.1",
"react-datepicker": "^1.5.0",
"react-native-datepicker": "^1.7.2",
"sinon": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.3",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-native": "^4.0.0",
"babel-register": "^6.26.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-native": "^0.55.4",
"react-native-elements": "^0.19.0",
"react-native-vector-icons": "^4.5.0",
"should": "^13.2.1",
"should-sinon": "0.0.6"
},
"peerDependencies": {
"lodash": "^4.17.4",
"moment": ">=2.22.0",
"prop-types": "^15.6.0",
"react": "^>=16.2.0",
"react-native": ">=0.52.0",
"react-native-elements": "^0.18.5",
"react-native-vector-icons": "^4.5.0"
},
"keywords": [
"react",
"react-native",
"questions",
"form",
"survey",
"census",
"builder"
],
"author": "INDEC (https://github.com/indec-it)",
"repository": {
"type": "git",
"url": "https://github.com/indec-it/react-native-form-builder.git"
},
"bugs": {
"url": "https://github.com/indec-it/react-native-form-builder/issues"
},
"homepage": "https://github.com/indec-it/react-native-form-builder",
"license": "MIT"
}