-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
58
59
60
61
62
63
64
65
66
{
"name": "redux-local",
"version": "0.1.3",
"description": "Redux helper for maintaining pseudo-local state in a single tree.",
"main": "dist/redux-local.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"test": "ava",
"start": "node ./example/server/default.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wildhoney/ReduxLocal.git"
},
"keywords": [
"redux",
"state",
"local",
"tree"
],
"ava": {
"files": [
"tests/*.test.js"
],
"babel": "inherit",
"require": [
"babel-register"
]
},
"author": "Adam Timberlake <adam.timberlake@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wildhoney/ReduxLocal/issues"
},
"homepage": "https://github.com/Wildhoney/ReduxLocal#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"ava": "^0.14.0",
"babel-cli": "^6.9.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",
"babel-register": "^6.9.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.7.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
},
"dependencies": {
"es6-weak-map": "^2.0.1",
"ramda": "^0.21.0",
"shortid": "^2.2.6"
}
}