-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.4 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.4 KB
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
{
"name": "App",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start -- --reset-cache",
"packager:kill": "lsof -n -i4TCP:8081 | sed '1 d' | awk '{print $2}' | xargs kill",
"bundle": "react-native bundle --platform ios --entry-file index.ios.js --bundle-output ./main.jsbundle --assets-dest ./release --dev false",
"test": "node node_modules/mocha/bin/mocha --compilers js:babel-register --recursive --timeout 3000",
"test:watch": "npm test -- --watch",
"lint": "node ./node_modules/eslint/bin/eslint.js --config .eslintrc index.android.js index.ios.js App/ __tests__/ || true",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js --fix --config .eslintrc index.android.js index.ios.js App/ || true"
},
"dependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.5.0",
"immutable": "^3.8.1",
"moment": "^2.15.0",
"react": "15.3.1",
"react-native": "^0.33.0",
"react-native-linear-gradient": "^1.5.12",
"react-native-credit-card": "^0.1.9",
"react-native-credit-card-input": "^0.2.4",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-saga": "^0.11.1"
},
"devDependencies": {
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2"
}
}