forked from discourse/DiscourseMobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "Discourse",
"version": "0.0.1",
"private": true,
"scripts": {
"clean-ios": "cd ios && xcodebuild -scheme Discourse -destination 'platform=iOS Simulator,name=iPhone 6' clean",
"prettier": "prettier --write \"js/**/*.js\"",
"lint": "eslint ./js"
},
"husky": {
"hooks": {
"pre-commit": "[ -f android/.gradle-properties ] && exit 1 || exit 0"
}
},
"dependencies": {
"invariant": "^2.2",
"lodash": "^4.17",
"moment": "^2.22",
"prop-types": "^15.6.0",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-device-info": "^0.24.3",
"react-native-fabric": "^0.5.2",
"react-native-key-pair": "git+https://github.com/samsaffron/react-native-key-pair.git",
"react-native-orientation": "git+https://github.com/yamill/react-native-orientation.git",
"react-native-progress": "^3.5",
"react-native-safari-view": "git+https://github.com/samsaffron/react-native-safari-view.git",
"react-native-sortable-listview": "github:deanmcpherson/react-native-sortable-listview",
"react-native-swipeout": "^2.3",
"react-native-vector-icons": "^5.0",
"react-navigation": "^1.5"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^7",
"babel-preset-react-native": "^4",
"eslint": "^5.6",
"eslint-plugin-react": "^7.11",
"eslint-plugin-react-native": "^3.3",
"husky": "^1.1.3",
"lint-staged": "^5.0.0",
"prettier": "^1.14"
}
}