This repository was archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.94 KB
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
{
"name": "@ambroseus/dck-store",
"version": "1.8.6",
"description": "Redux-based framework to get rid of CRUD-related boilerplate",
"repository": "https://github.com/ambroseus/dck-store",
"keywords": [
"typescript",
"redux",
"tsdx",
"redux-saga",
"immer",
"crud",
"toolkit",
"ducks-pattern",
"dck",
"react-redux",
"react-hooks-redux"
],
"publishConfig": {
"access": "public"
},
"main": "dist/dck-store.esm.js",
"module": "dist/dck-store.esm.js",
"types": "dist/index.d.ts",
"author": "Eugene Samonenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.1",
"@types/react-redux": "^7.1.5",
"@types/redux-saga-tester": "1.0.1",
"@testing-library/react": "^9.3.2",
"eslint-config-react-app": "^5.0.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"redux-saga-tester": "^1.0.614",
"tsdx": "^0.11.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@reduxjs/toolkit": "1.0.4",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-saga": "1.1.3"
},
"scripts": {
"build": "tsdx build --format esm --name dck-store",
"format": "prettier --write \"src/*.ts\" \"src/**/*.ts\" \"**/*.md\"",
"format:check": "prettier --list-different \"src/*.ts\" \"src/**/*.ts\" \"**/*.md\"",
"lint": "tsdx lint src && tsc --noEmit",
"prebuild": "npm run lint && npm run format:check && npm run test:coverage",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
6133
]
}
}
}
}
}