forked from bartonhammond/snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
71
{
"name": "snowflake",
"version": "0.0.10",
"private": true,
"jest": {
"scriptPreprocessor": "jestSupport/scriptPreprocess.js",
"setupEnvScriptFile": "./node_modules/react-native/jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"react",
"react-addons-test-utils",
"promise",
"source-map",
"key-mirror",
"immutable",
"fetch",
"redux",
"redux-thunk",
"fbjs"
],
"verbose": true,
"testPathDirs": [
"src/"
]
},
"scripts": {
"test": "rm -rf ./node_modules/jest-cli/.haste_cache && jest ",
"start": "react-native start",
"test:watch": "npm run test -- --watch",
"test-chrome": "node-debug --preload false --nodejs --harmony jest --runInBand",
"docs": "./node_modules/docker/docker -w -i src/ -o ../snowflake-pages "
},
"dependencies": {
"apsl-react-native-button": "git+https://[email protected]/bartonhammond/react-native-button.git",
"immutable": "^3.7.6",
"key-mirror": "^1.0.1",
"react-native": "^0.18.1",
"react-native-gifted-spinner": "0.0.3",
"react-native-simple-store": "^0.1.0",
"react-native-simpledialog-android": "^1.0.2",
"react-native-tab-navigator": "^0.2.15",
"react-native-vector-icons": "^1.1.0",
"react-redux": "^4.1.1",
"redux": "^3.1.2",
"redux-thunk": "^1.0.3",
"regenerator": "^0.8.42",
"tcomb-form-native": "^0.3.3",
"underscore": "^1.8.3",
"validate.js": "^0.9.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-jest": "^6.0.1",
"docker": "^0.2.14",
"istanbul": "^0.4.2",
"jest-cli": "^0.8.2",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7"
}
}