-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 871 Bytes
/
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
{
"name": "restdux",
"version": "0.2.1",
"description": "A Typescript/Javascript library for interacting with RESTful server APIs and connecting them to Redux store",
"main": "dist/restdux.js",
"types": "dist/restdux.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/*.ts\"",
"lint": "eslint \"src/*.ts\" --fix",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Christian Lent <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"prettier": "^2.0.5",
"redux": "^4.0.5",
"redux-thunk": "^2.0.0",
"typescript": "^3.8.2"
},
"peerDependencies": {
"redux": "^4.0.0",
"redux-thunk": "^2.0.0"
},
"prettier": {
"useTabs": true
}
}