-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "rxreact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"dev": "webpack-dev-server --devtool eval --progress --colors --inline --hot --content-base build",
"watch:test": "nodemon -w __tests__ -w ./app -e js,jsx -x npm test"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/*"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"history": "^1.17.0",
"react": "^0.14.0",
"react-addons-css-transition-group": "^0.14.0",
"react-addons-update": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^1.0.0",
"rx": "^4.0.0",
"seed-random": "^2.2.0",
"validate.js": "^0.9.0"
},
"devDependencies": {
"webpack-dev-server": "^1.12.0",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"css-loader": "^0.19.0",
"file-loader": "^0.8.4",
"jest-cli": "^0.5.10",
"node-sass": "^3.3.3",
"nodemon": "^1.7.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.2"
}
}