-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.1 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": "redux-jam",
"version": "0.0.7",
"description": "A Redux JSON-API model layer.",
"repository": {
"type": "git",
"url": "https://github.com/uptick/redux-jam.git"
},
"main": "lib/index.js",
"scripts": {
"build:prod": "webpack --config webpack/webpack.config.production.js --progress --colors",
"build": "webpack --config webpack/webpack.config.base.js --progress --colors",
"watch": "webpack --config webpack/webpack.config.base.js --progress --colors --watch",
"watch:prod": "webpack --config webpack/webpack.config.production.js --progress --colors --watch",
"dev": "node server.js",
"test": "mocha --require mock-css-modules --require babel-polyfill --compilers js:babel-register -R nyan --recursive tests/*.js",
"prepublish": "webpack --config webpack/webpack.config.production.js --progress --colors"
},
"author": "Luke Hodkinson",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.6.5",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^8.5.0",
"jsdom-global": "^1.7.0",
"mocha": "^3.2.0",
"mock-css-modules": "^1.0.0",
"nock": "^9.0.2",
"react-addons-test-utils": "^0.14.8",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.1.1",
"redux-devtools-chart-monitor": "^1.4.1",
"redux-devtools-diff-monitor": "^5.0.5",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"redux-saga-test-plan": "^2.4.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-bundle-tracker": "0.0.93",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"js-tinyapi": "^0.0.10",
"react": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"uuid": "^2.0.3"
}
}