-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "react-native-js-app-tutorial",
"version": "0.2.1",
"description": "A library for React Native to build a tutorial intro",
"author": "Antonio Moreno Valls <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/InterfaceKit/react-native-js-app-tutorial.git"
},
"bugs": {
"url": "https://github.com/InterfaceKit/react-native-js-app-tutorial/issues"
},
"tags": [
"react",
"react-native",
"react-component",
"android",
"ios"
],
"keywords": [
"react",
"react-native",
"ios",
"android",
"react-component",
"multiplatform",
"tutorial",
"intro"
],
"scripts": {
"prettier": "prettier --single-quote --print-width 81 --write index.js lib/Slider.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"main": "index.js",
"dependencies": {
"prop-types": "^15.6.1",
"react-native-iphone-x-helper": "^1.1.0"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/prettier": "^1.13.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^4.0.1",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"flow": "^0.2.3",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"react": "16.3.0-alpha.1",
"react-native": "^0.54.0",
"react-test-renderer": "16.5.0"
},
"jest": {
"preset": "react-native",
"verbose": true
}
}