-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.94 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
{
"name": "EquationSolver",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"compile": "tsc --noEmit -p . --pretty",
"format": "npm-run-all format:*",
"format:js": "prettier --write {.,**}/*.js",
"format:json": "prettier --write {.,**}/*.json",
"format:md": "prettier --write {.,**}/*.md",
"format:ts": "prettier --write {.,**}/*.{ts,tsx} && tslint --fix -p .",
"lint": "npm-run-all lint:*",
"lint:ts": "tslint -p .",
"postinstall": "solidarity",
"hack:types-react-navigation": "rimraf node_modules/@types/react-navigation/node_modules/@types",
"hack:types-react-native": "rimraf node_modules/@types/react-native/node_modules/@types",
"hack:types-react-test-renderer": "rimraf node_modules/@types/react-test-renderer/node_modules/@types",
"patch": "patch-package",
"prepare": "npm-run-all patch hack:*",
"storybook": "storybook start -p 9001 --skip-packager"
},
"dependencies": {
"@types/react-native-vector-icons": "^4.6.1",
"apisauce": "0.14.3",
"lodash.throttle": "4.1.1",
"mobx": "4.2.1",
"mobx-react": "5.1.2",
"mobx-state-tree": "2.0.5",
"ramda": "0.25.0",
"react": "16.3.1",
"react-mathjax2": "^0.0.1",
"react-native": "0.55.4",
"react-native-i18n": "2.0.12",
"react-native-keyboard-aware-scroll-view": "^0.6.0",
"react-native-keyboard-aware-view": "^0.0.14",
"react-native-keychain": "3.0.0-rc.3",
"react-native-simple-toast": "^0.0.8",
"react-native-splash-screen": "3.0.6",
"react-native-vector-icons": "4.3.0",
"react-navigation": "2.0.4",
"reactotron-mst": "2.0.0-beta.2",
"reactotron-react-native": "2.0.0-beta.2",
"validate.js": "0.12.0"
},
"devDependencies": {
"@storybook/addon-storyshots": "github:infinitered/addon-storyshots",
"@storybook/react-native": "3.4.3",
"@types/jest": "22.2.3",
"@types/ramda": "0.25.28",
"@types/react": "16.0.40",
"@types/react-native": "0.55.12",
"@types/react-navigation": "1.5.2",
"@types/react-test-renderer": "16.0.1",
"@types/validate.js": "0.11.0",
"babel-jest": "23.4.2",
"babel-plugin-transform-inline-environment-variables": "0.4.1",
"babel-preset-react-native": "4.0.0",
"ignite-ir-boilerplate-bowser": "^1.0.0-beta.1",
"ignite-vector-icons": "^1.1.0",
"jest": "23.4.2",
"jest-preset-ignite": "0.5.0",
"npm-run-all": "4.1.3",
"patch-package": "5.1.1",
"postinstall-prepare": "1.0.1",
"prettier": "1.12.1",
"react-dom": "16.2.0",
"react-native-typescript-transformer": "1.2.5",
"react-powerplug": "0.1.5",
"react-test-renderer": "16.3.1",
"rimraf": "2.6.2",
"solidarity": "2.1.0",
"tslint": "5.10.0",
"tslint-config-prettier": "1.12.0",
"typescript": "2.8.3"
},
"jest": {
"preset": "jest-preset-ignite"
},
"rnpm": {
"assets": [
"./src/theme/fonts/"
]
}
}