-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
38
39
40
41
42
43
44
45
{
"name": "simple-abstract-ui-data-adapter",
"version": "3.0.2",
"description": "This is a simple abstract ui data adapter that will help you separate api data from ui data.",
"homepage": "https://github.com/zenstok/simple-abstract-ui-data-adapter/#readme",
"url": "https://github.com/zenstok/simple-abstract-ui-data-adapter/issues",
"email": "[email protected]",
"main": "lib/index.js",
"license": "MIT",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"keywords": [
"web",
"front-end",
"typescript"
],
"scripts": {
"prepare": "husky install",
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": ">=13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-typescript2": "^0.33.0",
"typescript": "^4.7.4"
}
}