forked from star2star/react-verto-communicator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-verto-communicator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "jest ",
"build": "NODE_ENV=production webpack -p && cd dist; tar cvf ../verto.tar .",
"ui-test": "node ./node_modules/ui-harness/start --entry='./src/ui-test/specs'"
},
"author": "Star2Star",
"license": "MIT",
"dependencies": {
"halogen": "^0.2.0",
"json-loader": "^0.5.4",
"md5": "^2.1.0",
"moment": "^2.13.0",
"object-merge": "^2.5.1",
"radium": "^0.17.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-intl": "^2.1.2",
"react-modal": "^1.3.0",
"react-motion": "^0.4.4",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"redux-tooltip": "git://github.com/gtoma4/redux-tooltip.git",
"volume-meter": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^12.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"copy-webpack-plugin": "^3.0.1",
"enzyme": "^2.3.0",
"jest-cli": "^12.1.1",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.4",
"ui-harness": "^3.9.4",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.13.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"jest-babel": {
"stage": 0
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testDirectoryName": "tests",
"testPathIgnorePatterns": [
"/specs/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-tools",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/sinon",
"<rootDir>/node_modules/radium",
"<rootDir>/src/components"
]
},
"repository": {
"type": "git",
"url": "https://github.com/star2star/react-verto-communicator"
}
}