-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 3.22 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
{
"name": "markit",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"prestart": "./node_modules/react-viro/bin/run_ngrok.sh",
"start": "node node_modules/react-native/local-cli/cli.js start npm run start-server",
"server": "node server",
"seed": "node script/seed.js",
"image": "node script/createImage.js",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client"
},
"dependencies": {
"@react-navigation/bottom-tabs": "^5.0.0-alpha.22",
"@react-navigation/core": "^3.5.1",
"axios": "^0.19.0",
"colors": "^1.4.0",
"compression": "^1.7.3",
"connect-session-sequelize": "^6.0.0",
"express": "^4.16.4",
"express-session": "^1.15.1",
"history": "^4.9.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"react": "16.9.0",
"react-dom": "^16.8.6",
"react-native": "0.59.9",
"react-native-button": "^2.4.0",
"react-native-elements": "^1.2.7",
"react-native-gesture-handler": "^1.5.1",
"react-native-paper": "^3.3.0",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "^0.6.1",
"react-native-screens": "^2.0.0-alpha.16",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-material-bottom-tabs": "^2.1.5",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.6.0",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"react-viro": "2.17.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^5.3.1",
"socket.io": "^2.2.0",
"styled-components": "^5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-fullstack": "^6.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-react": "^7.12.4",
"git-url-parse": "^11.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"metro-react-native-babel-preset": "0.57.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.3",
"npm-merge-driver": "^2.3.5",
"prettier": "^1.11.1",
"react-test-renderer": "^16.4.2",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"simple-git": "^1.121.0",
"supertest": "^4.0.2",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"yaml": "^1.6.0"
}
}