-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 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
57
{
"name": "utilityjs",
"version": "0.1.0",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"description": "A collection of useful utility Classes, Functions, React Hooks and Components.",
"repository": "git@github.com:mimshins/utilityjs.git",
"author": "mimshins <mostafa.sh.coderino@gmail.com>",
"license": "MIT",
"sideEffects": false,
"keywords": [
"utils",
"utility",
"functions",
"functional programming",
"react"
],
"scripts": {
"clear": "rimraf dist",
"build:npm": "node ./scripts/build-npm-module.js",
"build:ts:esm": "tsc -p tsconfig.json",
"build:ts:cjs": "tsc -p tsconfig.cjs.json",
"build:ts": "npm-run-all build:ts:esm build:ts:cjs",
"prebuild:ts": "npm run clear"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^16.7.13",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
}
}