updux/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2019-10-17 15:15:10 +00:00
{
2022-08-25 01:19:27 +00:00
"type": "module",
2020-06-02 20:00:48 +00:00
"dependencies": {
2022-08-25 23:43:07 +00:00
"immer": "^9.0.15",
"json-schema-shorthand": "^2.0.0",
2022-08-26 17:03:33 +00:00
"redux": "^4.2.0",
2022-08-25 23:43:07 +00:00
"remeda": "^1.0.1",
"updeep": "^1.2.1"
2020-06-02 20:00:48 +00:00
},
"license": "MIT",
2022-09-02 14:40:34 +00:00
"main": "src/index.js",
2020-06-02 20:00:48 +00:00
"name": "updux",
"description": "Updeep-friendly Redux helper framework",
"scripts": {
2022-08-30 20:17:47 +00:00
"docsify:serve": "docsify serve docs"
2020-06-02 20:00:48 +00:00
},
2022-08-30 20:17:47 +00:00
"version": "4.0.0",
2020-06-02 20:00:48 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/yanick/updux.git"
},
"keywords": [
"redux",
"updeep"
],
"author": "Yanick Champoux <yanick@babyl.ca> (http://techblog.babyl.ca)",
"bugs": {
"url": "https://github.com/yanick/updux/issues"
},
"homepage": "https://github.com/yanick/updux#readme",
2022-08-25 01:37:31 +00:00
"devDependencies": {
2022-09-07 15:03:40 +00:00
"@vitest/browser": "^0.23.1",
"@vitest/ui": "^0.23.1",
2022-08-25 14:51:07 +00:00
"eslint": "^8.22.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-todo-plz": "^1.2.1",
2022-08-30 18:32:56 +00:00
"jsdoc-to-markdown": "^7.1.1",
2022-08-25 14:51:07 +00:00
"prettier": "^2.7.1",
2022-09-07 15:03:40 +00:00
"vitest": "0.23.1"
2020-06-02 20:00:48 +00:00
}
2019-10-17 15:15:10 +00:00
}