-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hooks-use",
"version": "0.0.1",
"description": "The starter lib and app combo created using rollup",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"type": "module",
"repository": "https://github.com/sahil143/rollup-lib-app-starter",
"author": "sahil143",
"license": "MIT",
"private": false,
"scripts": {
"prepare": "husky",
"build:web": "cd ./web && yarn build",
"start:web": "cd ./web && yarn start",
"install:web": "cd ./web && yarn install --no-lockfile",
"build": "rm -rf dist && rollup -c",
"dev": "rm -rf dist && rollup -c --watch",
"lint": "eslint .",
"test": "jest",
"gen:hook": "zx ./scripts/generate-template/generate.mjs",
"gen:docs": "zx ./scripts/docs/generate.mjs"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@eslint/js": "^9.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.0.0",
"handlebars": "^4.7.8",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"parcel": "^2.12.0",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.14.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.23",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0",
"zx": "^8.0.1"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,jsx}": [
"prettier --write",
"eslint"
]
}
}