-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "DeVryCalc",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint src/**",
"test:dev": "jest --watchAll",
"storybook": "storybook start -p 7007",
"fix-vector-error": "rm ./node_modules/react-native/local-cli/core/__fixtures__/files/package.json 2> /dev/null"
},
"dependencies": {
"color": "^3.0.0",
"lodash": "^4.17.5",
"react": "^16.3.0-alpha.1",
"react-native": "^0.54.0",
"react-native-material-textfield": "^0.12.0",
"react-native-onesignal": "^3.1.1",
"react-native-splash-screen": "^3.0.6",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.4.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-persist": "^5.9.1",
"redux-persist-filesystem-storage": "^1.1.1",
"redux-thunk": "^2.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.14",
"@storybook/addon-links": "^3.3.14",
"@storybook/addons": "^3.3.14",
"@storybook/react-native": "^3.3.14",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"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.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.2",
"prop-types": "^15.6.1",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"redux-devtools-extension": "^2.13.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"setupFiles": [
"<rootDir>/src/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}