-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "DemoCurrencies",
"version": "0.0.1",
"private": true,
"scripts": {
"js:check": "tsc -p tsconfig.json",
"js:lint": "tslint -p tsconfig.json",
"js:test": "jest",
"prettier": "prettier --write '**/*.{ts,tsx}'",
"test": "npm run js:check --silent && npm run js:lint --silent && npm run js:test --silent",
"start": "react-native start",
"xcode": "open ios/DemoCurrencies.xcworkspace"
},
"dependencies": {
"mobx": "^4.9.4",
"mobx-react": "^5.4.3",
"mobx-utils": "^5.2.0",
"query-string": "^6.4.2",
"react": "16.8.3",
"react-native": "0.59.4",
"react-native-gesture-handler": "^1.1.0",
"react-navigation": "^3.6.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/runtime": "^7.4.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.12",
"@types/react-native": "^0.57.42",
"@vovkasm/tslint-config": "^2.0.1",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.16.4",
"tslint": "^5.15.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.2"
}
}