-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.82 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "rascl",
"version": "1.0.4",
"description": "Redux API State Caching Layer",
"keywords": [
"redux",
"redux-saga",
"typescript"
],
"homepage": "https://github.com/ironblock/RASCL#readme",
"bugs": {
"url": "https://github.com/ironblock/RASCL/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironblock/RASCL.git"
},
"license": "BSD-2-Clause",
"author": {
"name": "Corey Vixie",
"email": "corey@vixie.enterprises",
"url": "https://twitter.com/corey"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "swc src --out-dir dist --sync --delete-dir-on-start && tsc --emitDeclarationOnly --outDir dist",
"build:experimental-swc": "swc src --out-dir dist --sync --delete-dir-on-start && tsc --emitDeclarationOnly --outDir dist",
"preci": "rm -rf node_modules",
"jest": "jest --env=node --colors --coverage --verbose",
"lint": "eslint --ext .ts,.tsx,.test.ts .",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build",
"prepublishOnly": "npm run test",
"test": "npm run lint ; npm run typecheck ; npm run jest",
"typecheck": "tsc --pretty --skipLibCheck --noEmit"
},
"dependencies": {
"immer": "^9.0.1",
"lodash.snakecase": "^4.1.1"
},
"devDependencies": {
"@redux-saga/core": "^1.2.2",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.23",
"@swc/jest": "^0.2.24",
"@types/eslint": "^8.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.0.2",
"@types/lodash.snakecase": "^4.1.6",
"@types/node": "^16.11.7",
"@types/node-fetch": "^3.0.3",
"@types/prettier": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.5.1",
"ky": "^0.28.7",
"node-fetch": "^2.6.1",
"prettier": "^2.8.1",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.2.2",
"redux-saga-test-plan": "^4.0.6",
"reselect": "^4.1.7",
"type-fest": "^1.4.0",
"typescript": "~4.4.0",
"typescript-tuple": "^5.0.1"
},
"peerDependencies": {
"ky": "^0.28.7",
"redux": "^4.1.2",
"redux-saga": "^1.1.1",
"reselect": "^4.1.4",
"typescript": "^4.2"
},
"peerDependenciesMeta": {
"ky": {
"optional": true
},
"redux-saga": {
"optional": true
}
},
"engines": {
"node": ">=14.0.0",
"npm": ">=8.0.0",
"yarn": "No longer used"
}
}