-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
91 lines (91 loc) · 3.1 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
{
"name": "rhinosapp",
"version": "0.7.1",
"repository": "https://github.com/rhinos-app/rhinos-app-dev.git",
"url": "https://github.com/rhinos-app",
"description": "Rhinos-app is a react-native app which uses react-native-web to achieve cross-platform design.",
"keywords": [
"react-component",
"react-native",
"cross-platform",
"react-native-web",
"universal"
],
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/ && cd android/ && ./gradlew assembleDebug",
"web": "webpack-dev-server --port 3000 --config web/webpack.config.dev.js -d --inline --hot --colors",
"clean-web": "rm -Rf web/static/build/",
"build-web": "npm run clean-web && webpack --colors --display-error-details --config web/webpack.config.prod.js",
"serve-web-background": "serve --compress --port 8300 web/static/ > ~/rhinos-app.log 2>&1 &",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"commit": "commit-wizard",
"test": "jest",
"lint": "eslint ./app"
},
"dependencies": {
"react": "15.3.2",
"react-addons-shallow-compare": "^15.4.1",
"react-native": "~0.39.2",
"react-native-animatable": "^1.1.0",
"react-native-elements": "^0.7.1",
"react-native-gifted-form": "^0.0.13",
"react-native-navbar": "^1.5.4",
"react-native-tab-view": "0.0.40",
"react-native-vector-icons": "^3.0.0",
"react-native-web": "0.0.55",
"serve": "^1.4.0"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-native": "1.9.0",
"babel-preset-stage-1": "^6.5.0",
"babel-runtime": "^6.9.2",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-plugin-jsdoc": "^2.4.0",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.3",
"jest-react-native": "^17.1.0",
"json-loader": "^0.5.4",
"pre-git": "^3.12.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-test-renderer": "^15.4.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"preset": "jest-react-native",
"verbose": true,
"transformIgnorePatterns": [
"node_modules/(?!react-native|apsl-react-native)"
],
"moduleNameMapper": {
"react-native": "<rootDir>/node_modules/react-native-web"
}
},
"config": {
"pre-git": {
"commit-msg": "conventional",
"pre-commit": [
"npm test",
"npm run lint"
],
"pre-push": [],
"post-commit": [],
"post-merge": []
}
}
}