forked from redbadger/pride-london-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "pride-london-app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run-ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"run-android":
"node node_modules/react-native/local-cli/cli.js run-android",
"test": "jest src",
"precommit": "lint-staged",
"lint": "eslint src",
"flow": "flow src"
},
"dependencies": {
"contentful": "^5.0.5",
"react": "16.2.0",
"react-native": "0.53.0",
"react-native-config": "^0.11.5"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "22.2.2",
"babel-preset-react-native": "4.0.0",
"commander": "^2.13.0",
"contentful-management": "^4.1.4",
"dotenv": "^5.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.43.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.63.0",
"husky": "^0.14.3",
"jest": "22.2.2",
"lint-staged": "^6.0.0",
"lorem-ipsum": "^1.0.4",
"markdown-toc": "^1.2.0",
"prettier": "^1.10.2",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"],
"README.md": ["markdown-toc -i", "git add"]
}
}