-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
53
54
55
56
{
"name": "@christiandrey/hookstate",
"version": "1.4.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"repository": "[email protected]:christiandrey/hookstate.git",
"author": "christiandrey <[email protected]>",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/node": "^16.11.10",
"@types/react": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tree-shaking": "^1.9.2",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-hooks-testing-library": "^0.6.0",
"rollup": "^2.60.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": ">=16.12.0"
},
"scripts": {
"start": "rollup -c -w",
"build": "rimraf dist & NODE_ENV=production rollup -c",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --format=pretty",
"prestart": "rimraf dist",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json}'",
"prepare": "husky install"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}