-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (41 loc) · 942 Bytes
/
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
{
"name": "Pokelert",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"dependencies": {
"react": "^15.2.0",
"react-native": "^0.30.0",
"react-native-drawer": "^2.2.6",
"react-native-event-horizon": "^1.0.1",
"react-native-maps": "^0.7.1",
"react-native-side-menu": "^0.20.0"
},
"devDependencies": {
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-meteor": "^3.5.2",
"eslint-plugin-react": "^5.0.1",
"stylelint": "^6.5.1",
"stylelint-config-standard": "^8.0.0"
},
"eslintConfig": {
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/guide"
],
"rules": {
"import/no-unresolved": 0,
"func-names": 0
},
"globals": {
}
}
}