This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
{
"name": "Totem",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"test": "mocha --compilers js:babel-core/register --require regenerator-runtime/runtime --require react-native-mock/mock.js --recursive __tests__/**/*.js"
},
"dependencies": {
"buffer": "^3.5.4",
"jsrsasign": "5.0.1",
"keymirror": "~0.1.0",
"react": "~15.4.0-rc.4",
"react-native": "0.38",
"react-native-button": "1.7.1",
"react-native-vector-icons": "4.0.0",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-logger": "^2.6.1",
"redux-saga": "^0.15.3",
"redux-storage": "^4.0.0",
"redux-storage-decorator-filter": "^1.1.4",
"redux-storage-engine-reactnativeasyncstorage": "^1.0.0",
"underscore": "1.8.3",
"url": "^0.11.0",
"url-join": "1.1.0",
"pluralize": "3.0.0"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "4.1.1",
"babel-preset-react-native": "^1.9.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "1.3.1",
"eslint-plugin-react": "3.3.1",
"jest-cli": "~11",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-native-mock": "^0.2.3"
},
"lint": "eslint . --ext .js --ext .jsx",
"jest": {
"scriptPreprocessor": "node_modules/react-native/jestSupport/preprocessor.js",
"setupEnvScriptFile": "node_modules/react-native/jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
],
"automock": false
}
}