-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "@mfbtech/rtk-modules",
"version": "1.0.0",
"description": "Utilities to help modularize and test redux toolkit slice elements",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.prod.json",
"test": "tsc && jest --watch",
"typetest": "tsc -w",
"lint": "eslint ./src/",
"fix-formatting": "prettier --write --config ./prettier.config.js ./src/",
"check-formatting": "prettier --check --config ./prettier.config.js ./src/"
},
"author": "MFB Technologies, Inc.",
"devDependencies": {
"@types/node": "^14.17.6",
"@types/jest": "^27.4.0",
"jest": "27.1.0",
"ts-jest": "^27.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"eslint": "^8.3.0",
"@typescript-eslint/parser": "^5.9.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"prettier": "^2.4",
"@rushstack/eslint-config": "~2.5.1",
"@reduxjs/toolkit": "^1.7.1",
"redux": "~4.2.0",
"redux-thunk": "~2.4.1",
"immer": "^9.0.6"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.7.1",
"redux": "~4.2.0"
}
}