-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 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
{
"name": "model-redux",
"version": "1.6.2",
"description": "",
"main": "lib",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "jest"
},
"keywords": [
"redux",
"model",
"rxjs",
"redux-saga",
"redux-observable"
],
"author": "fezzc",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/invariant": "^2.2.29",
"@types/node": "^14.6.0",
"@types/react-redux": "^7.1.1",
"@types/redux": "^3.6.0",
"@types/redux-saga": "^0.10.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"conventional-changelog": "^3.1.8",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"sinon": "^7.4.1",
"typescript": "^3.7.5"
},
"dependencies": {
"invariant": "^2.2.4",
"redux": "^4.0.1",
"redux-observable": "^1.1.0",
"redux-saga": "^0.16.2",
"rxjs": "^6.5.2"
}
}