-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.37 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.37 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
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
83
84
85
86
87
{
"name": "redux-immutable",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"production": "webpack -p",
"lint": "eslint app/.; exit 0",
"fix": "eslint --fix app/.; exit 0",
"atest": "ava",
"test": "mocha --reporter spec tools/testSetup.js \"app/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"xzpository": {
"type": "git",
"url": "git+https://github.com/ReactjsProgram/Redux-Immutable.git"
},
"keywords": [],
"author": "whtouche",
"license": "",
"bugs": {
"url": "https://github.com/ReactjsProgram/Redux-Immutable/issues"
},
"homepage": "https://github.com/ReactjsProgram/Redux-Immutable#readme",
"dependencies": {
"axios": "^0.11.1",
"babel-plugin-module-alias": "^1.4.0",
"es6-promise": "^3.2.1",
"fetch-jsonp": "^1.0.0",
"jsonp": "^0.2.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.6",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^4.3.0",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.20.1",
"flow-bin": "^0.27.0",
"flow-status-webpack-plugin": "^0.1.5",
"html-webpack-plugin": "^2.15.0",
"jsdom": "^9.2.0",
"mocha": "^2.5.3",
"phantomjs-polyfill": "0.0.2",
"react-addons-test-utils": "^15.1.0",
"style-loader": "^0.13.1",
"wallaby-webpack": "0.0.22",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"files": [
"app/**/*.test.js"
],
"require": [
"babel-register",
"./tools/setup-browser-env.js"
],
"babel": "inherit"
}
}