-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "hackd",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native run-ios",
"start:x": "react-native run-ios --simulator='iPhone X'",
"link": "react-native link",
"prettier": "prettier -l \"**/*.js\"; exit 0;",
"prettier:write": "prettier --write \"**/*.js\"; exit 0;",
"eslint": "eslint .; exit 0;",
"eslint:fix": "eslint --fix .; exit 0;",
"format": "npm run prettier && npm run eslint",
"test": "jest"
},
"dependencies": {
"cheerio-without-node-native": "^0.20.2",
"javascript-time-ago": "^1.0.28",
"prop-types": "^15.6.0",
"react": "16.4.1",
"react-native": "^0.56.0",
"react-native-haptic": "^1.0.5",
"react-native-htmlview": "^0.12.1",
"react-native-navigation": "^1.1.378",
"react-native-safari-view": "^2.1.0",
"react-native-swipeable": "^0.6.0",
"react-native-tableview": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.6.10",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "22.1.0",
"babel-preset-react-native": "5.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "22.1.4",
"prettier": "1.10.2",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/tests/**/*.js"
]
}
}