forked from Studio-M4/Cruisin-66
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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
{
"name": "cruisin66v1",
"version": "0.0.1",
"description": "Studio-M4 Hack Reactor Thesis project",
"author": "Studio-M4",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint ./",
"database": "nodemon ./db/models/index.js",
"start-dev": "nodemon ./server/app.js"
},
"dependencies": {
"@babel/core": "^7.0.0-rc.1",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cloudinary": "^1.11.0",
"eslint-config-airbnb": "^17.1.0",
"expo": "^27.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"morgan": "^1.9.0",
"mysql": "^2.16.0",
"mysql2": "^1.6.1",
"native-base": "^2.7.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-app-link": "^0.4.1",
"react-native-elements": "^0.19.1",
"react-native-google-places-autocomplete": "^1.3.9",
"react-native-image-picker": "^0.26.10",
"react-native-ionicons": "^0.2.2",
"react-native-map-link": "^2.1.0",
"react-native-maps": "^0.21.0",
"react-native-segmented-control-tab": "^3.3.1",
"react-native-vector-icons": "^5.0.0",
"react-navigation": "^2.11.2",
"request": "^2.69.0",
"router": "^1.3.3",
"sequelize": "^4.38.0",
"tcomb-form-native": "^0.6.15"
},
"devDependencies": {
"babel-jest": "23.4.2",
"babel-preset-react-native": "^5",
"jest": "23.5.0",
"react-test-renderer": "16.3.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest-expo": "~27.0.0",
"nodemon": "^1.18.3",
"react": "16.4.1",
"react-native-scripts": "1.14.0",
"sequelize": "^4.38.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|expo|native-base|react-navigation|tcomb-form-native)"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}