-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1.53 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
{
"name": "Finance",
"version": "0.0.1",
"description": "iOS's Stocks App clone written for MacOS with Touch Bar support. Data is pulled from Yahoo Finance.",
"private": true,
"scripts": {
"start": "node node_modules/react-native-macos/local-cli/cli.js start",
"postinstall": "find ./node_modules/react-native-macos \\( -name *.h -o -name *.m \\) -print0 | xargs -0 sed -i '' -e 's:<CSSLayout/\\(.*\\)>:\"\\1\":g'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7kfpun/FinanceMacOSReactNative.git"
},
"keywords": [
"react-native-macos",
"react-native",
"react",
"macos",
"touchbar",
"finance",
"stocks",
"yahoo-finance"
],
"author": "kf <7kfpun@gmail.com> (https://github.com/7kfpun)",
"license": "MIT",
"bugs": {
"url": "https://github.com/7kfpun/FinanceMacOSReactNative/issues"
},
"homepage": "https://github.com/7kfpun/FinanceMacOSReactNative#readme",
"dependencies": {
"mobx": "^2.6.2",
"mobx-react": "^3.5.8",
"moment": "^2.15.2",
"react": "15.3.2",
"react-native-macos": "^0.10.5",
"react-native-simple-store": "^1.1.0",
"react-native-touchbar": "^1.0.0",
"react-router-native": "^2.0.0-beta.0"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0"
}
}