-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
46
47
48
49
50
51
52
{
"name": "@codecb/react-utils",
"version": "0.0.1",
"description": "Useful hooks, components and utils for React",
"repository": "https://github.com/code-cb/react-utils",
"author": "ICodeMyOwnLife",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup --config scripts/build.ts --configPlugin typescript --watch",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit -p ."
},
"devDependencies": {
"@codecb/eslint-plugin": "^0.0.7",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-filesize": "^9.1.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": "^17.0.0"
}
}