-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "ymReactNative",
"version": "0.0.1",
"private": true,
"scripts": {
"lint:create": "eslint --init",
"lint": "eslint --ext .js src --fix",
"ios": "NODE_ENV=dev npm run lint && react-native run-ios",
"android": "NODE_ENV=dev npm run lint && react-native run-android",
"ios-max": "npm run lint && react-native run-ios --simulator='iPhone X'",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"prettier": "prettier src/**/**/*.js --write",
"standard": "standard --fix && standard --verbose | snazzy",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commitmsg": "validate-commit-msg"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "0.49.5",
"react-native-sentry": "^0.34.0",
"react-navigation": "^1.0.0-beta.21",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.5",
"cz-conventional-changelog": "^2.1.0",
"eslint-plugin-react-native": "^3.2.0",
"jest": "21.2.1",
"react-native-scrollable-tab-view": "^0.8.0",
"react-test-renderer": "16.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"validate-commit-msg": "^2.14.0"
},
"jest": {
"preset": "react-native"
}
}