-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "cabalmobile",
"version": "0.0.1",
"private": true,
"license": "GPLv3",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run-android": "react-native run-android",
"run-ios": "react-native run-ios",
"test": "standard && jest",
"precommit": "lint-staged"
},
"dependencies": {
"nodejs-mobile-react-native": "^0.1.4",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-gifted-chat": "0.4.3",
"react-navigation": "^2.3.1",
"string-to-color": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-jest": "23.0.1",
"babel-preset-react-native": "4.0.0",
"husky": "^0.14.3",
"jest": "23.1.0",
"lint-staged": "^7.2.0",
"react-test-renderer": "16.3.1",
"standard": "^11.0.1"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"alert",
"test",
"expect"
],
"ignore": [
"nodejs-assets/nodejs-project/sample-main.js"
]
}
}