forked from cimdalli/redux-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.93 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
79
80
81
82
83
84
85
86
{
"name": "redux-ts",
"version": "4.1.8",
"description": "Utils to define redux reducer/action in typescript",
"main": "dist/redux-ts.production.min.js",
"typings": "dist/src/index.d.ts",
"files": [
"*.md",
"dist",
"LICENSE",
"lib",
"src"
],
"repository": "cimdalli/redux-ts",
"authors": [
"Okan Çetin"
],
"license": "MIT",
"scripts": {
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"clean": "rimraf dist lib",
"build": "npm run clean && npm run build:dev && npm run build:prod",
"prepublish": "npm run test && npm run build",
"test": "mocha --require source-map-support/register --require ts-node/register tests/**/*.spec.ts"
},
"tags": [
"react",
"redux",
"typescript",
"ts",
"action",
"reducer",
"async"
],
"keywords": [
"react",
"redux",
"typescript",
"ts",
"action",
"reducer",
"async",
"react-component"
],
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/react": "^16.7.18",
"@types/react-redux": "^6.0.11",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier-tslint": "^0.4.1",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15",
"react-redux": ">=5",
"redux": ">=4"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
}