-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 3.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
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
92
93
94
95
96
97
98
99
100
{
"name": "revolut-task",
"description": "Currency exchange application for Revolut task.",
"private": true,
"main": "index.js",
"version": "0.0.1",
"scripts": {
"rn-cli": "node scripts/react-native.js",
"start:android": "yarn rn-cli run-android",
"start:windows": "yarn rn-cli run-windows",
"start:ios": "yarn rn-cli run-ios --simulator='iPhone 8'",
"start:web": "cross-env platform=web webpack-dev-server --config=web/webpack/dev.js --progress --colors --mode=development",
"start:rn-dev-server": "yarn rn-cli start --reset-cache",
"start:next": "next start",
"start:next:dev": "next",
"build:web": "cross-env platform=web webpack --config=web/webpack/prod.js --progress --colors --mode=production",
"build:next": "next build",
"test": "jest -c jest/jest.config.js",
"test:watch": "yarn test --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest -c jest/jest.config.js --runInBand",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -w",
"lint": "eslint --config .eslintrc --ext .ts src",
"build:lambda": "netlify-lambda build ./functions/api",
"postinstall": "netlify-lambda install"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/preset-env": "7.5.5",
"@react-native-community/cli": "1.10.0",
"@types/debounce": "^1.2.0",
"@types/enzyme": "3.10.3",
"@types/history": "^4.7.4",
"@types/http-proxy-middleware": "^0.19.3",
"@types/invariant": "^2.2.31",
"@types/jest": "24.0.18",
"@types/react": "16.8.24",
"@types/react-native": "^0.61.4",
"@types/react-redux": "^7.1.5",
"@types/redux-mock-store": "^1.0.1",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "2.1.0",
"@typescript-eslint/parser": "2.1.0",
"babel-loader": "8.0.6",
"compression-webpack-plugin": "3.0.0",
"cross-env": "5.2.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.4.0",
"eslint": "6.3.0",
"eslint-loader": "3.0.0",
"eslint-plugin-jest": "22.16.0",
"eslint-plugin-react": "7.14.3",
"favicons-webpack-plugin": "2.1.0",
"fork-ts-checker-webpack-plugin": "1.5.0",
"html-webpack-plugin": "3.2.0",
"jest": "24.9.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "0.56.0",
"redux-saga-testing": "^2.0.0",
"rnpm-plugin-windows": "0.2.11",
"sinon": "^8.1.1",
"typescript": "3.6.2",
"webpack": "4.39.3",
"webpack-cli": "3.3.7",
"webpack-dev-server": "3.8.0",
"webpack-merge": "4.2.2"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-navigation/core": "^3.5.1",
"@react-navigation/native": "3.4.0",
"@react-navigation/web": "^1.0.0-alpha.9",
"@types/remote-redux-devtools": "^0.5.3",
"dayjs": "^1.8.19",
"http-proxy-middleware": "^0.20.0",
"intl": "^1.2.5",
"netlify-lambda": "^1.6.3",
"next": "^9.2.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-native": "0.59.10",
"react-native-gesture-handler": "1.1.0",
"react-native-screens": "1.0.0-alpha.22",
"react-native-svg": "^11.0.1",
"react-native-windows": "0.59.0-rc.3",
"react-navigation": "3.9.1",
"react-redux": "^7.1.3",
"react-xml-parser": "^1.1.3",
"reactxp": "2.0.0",
"reactxp-virtuallistview": "^2.1.0",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"remote-redux-devtools": "^0.5.16"
}
}