-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "redux-action-object",
"version": "0.1.3",
"description": "Define your Redux actions and reducers using object literal or ES6 class syntax",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build:lib": "./node_modules/.bin/babel src --out-dir lib",
"start": "./node_modules/.bin/webpack-dev-server --config webpack-demo.config.js --colors",
"test": "./node_modules/.bin/mocha --require source-map-support/register --compilers js:babel-core/register test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasyas/redux-action-object.git"
},
"keywords": [
"reactjs",
"redux",
"side",
"effects",
"class",
"js"
],
"author": "Vasyl Stashuk <vasyl@stashuk.com>",
"license": "ISC",
"dependencies": {
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"html-webpack-plugin": "^2.21.0",
"mocha": "^2.5.3",
"mocha-loader": "^0.7.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"redux-devtools": "^3.3.1",
"source-map-support": "^0.4.1",
"stack-source-map": "^1.0.5",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}