-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "redux-domain",
"version": "0.4.2",
"main": "./es/index.js",
"typings": "./type-definitions",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aight8/redux-domain"
},
"author": "Sebastian Fekete <s.fekete@ggaweb.ch>",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"redux",
"react-redux",
"redux-saga",
"decorator",
"reducer",
"state",
"flux",
"domain"
],
"bugs": {
"url": "https://github.com/aight8/redux-domain/issues"
},
"scripts": {
"build": "yarn build:es && yarn build:lib",
"build:es": "rimraf es && rimraf type-definitions && tsc -p tsconfig.json",
"build:lib": "rimraf lib && tsc -p tsconfig.lib.json",
"test": "mocha --compilers ts:ts-node/register,tsx:ts-node/register ./test/**.ts",
"docs": "yarn docs:clear && yarn docs:prepare && yarn docs:build",
"docs:clear": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "gitbook build"
},
"dependencies": {
"axios": "^0.16.0",
"qs": "^6.3.1",
"redux": "^3.6.0",
"redux-actions": "^2.0",
"redux-saga": "^0.14.3"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/chai-as-promised": "^0.0.30",
"@types/chalk": "^0.4.31",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.13",
"@types/prettyjson": "^0.0.28",
"@types/qs": "^6.2.30",
"@types/react-redux": "^4.4.36",
"@types/redux": "^3.6.0",
"@types/redux-actions": "^1.2.4",
"@types/redux-immutable": "^3.0.33",
"@types/redux-saga": "^0.10.5",
"@types/socket.io-client": "^1.4.29",
"axios-mock-adapter": "^1.8.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "^1.1.3",
"express": "^4.14.1",
"flux-standard-action": "^1.2.0",
"form-data": "^2.1.2",
"generator-bind": "^1.0.1",
"immutable": "^4.0.0-rc.1",
"mocha": "^3.2.0",
"prettyjson": "^1.2.1",
"reflect-metadata": "^0.1.9",
"reselect": "^3.0.0",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.11",
"ts-node": "^3.0.0",
"typescript": "2.3.0-dev.20170319"
}
}