-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cnotes",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint app/",
"test": "jest",
"lint-css": "stylelint './app/**/*.js'",
"postinstall": "cp -vr ./app/assets/fonts ./android/app/src/main/assets"
},
"dependencies": {
"lottie-react-native": "2.3.2",
"luxon": "0.4.0",
"prop-types": "15.6.0",
"ramda": "0.25.0",
"react": "16.2.0",
"react-native": "0.53.0",
"react-native-interactable": "0.1.7",
"react-native-iphone-x-helper": "1.0.2",
"react-native-linear-gradient": "2.4.0",
"react-native-navigation": "wix/react-native-navigation#2580/head",
"react-native-svg": "6.1.3",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-persist": "5.6.10",
"redux-thunk": "2.2.0",
"remote-redux-devtools": "0.5.12",
"styled-components": "3.1.6"
},
"devDependencies": {
"babel-eslint": "8.2.1",
"babel-jest": "22.1.0",
"babel-plugin-styled-components": "1.5.0",
"babel-preset-react-native": "4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.1",
"eslint": "4.17.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-reactnative": "1.0.2",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.6.1",
"eslint-plugin-react-native": "3.2.1",
"jest": "22.1.4",
"jest-enzyme": "4.2.0",
"prettier": "1.10.2",
"prettier-stylelint": "0.4.2",
"react-test-renderer": "16.2.0",
"stylelint": "8.4.0",
"stylelint-config-idiomatic-order": "5.0.0",
"stylelint-config-standard": "18.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.2.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)"
],
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}