-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 946 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
{
"name": "TriTacToe",
"version": "1.0.0-alpha.1",
"private": true,
"scripts": {
"build": "react-native bundle --entry-file index.ios.js --bundle-output ./ios/TriTacToe/main.jsbundle --dev false --platform ios --assets-dest ./ios",
"lint": "eslint app",
"run": "react-native run-ios",
"start": "react-native start"
},
"dependencies": {
"color": "0.11.4",
"lodash": "4.16.6",
"react": "15.3.2",
"react-native": "0.37.0",
"react-native-sound": "0.8.3",
"react-native-vector-icons": "3.0.0",
"react-redux": "4.4.5",
"redux": "3.6.0"
},
"devDependencies": {
"eslint": "3.10.0",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"react"
],
"rules": {
"react/jsx-filename-extension": 0
}
}
}