-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "throttle-ts",
"version": "1.5.0",
"description": "Correctly typed generic throttle function",
"typings": "dist/typings/index.d.ts",
"main": "dist/throttle-ts.min.js",
"private": false,
"license": "MIT",
"files": [
"/dist",
"package.json",
"CHANGELOG.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "[email protected]:martinstark/throttle-ts.git"
},
"scripts": {
"build": "yarn build:clean && webpack --config webpack.common.js && tsc -p tsconfig.json --emitDeclarationOnly",
"build:clean": "rimraf dist/*",
"fix": "eslint --fix .",
"lintstaged": "lint-staged",
"pretty": "prettier --write .",
"ts": "tsc --noEmit",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"babel-loader": "9.1.2",
"eslint": "8.35.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint_d": "12.2.1",
"husky": "7.0.2",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "4.1.2",
"semantic-release": "20.1.1",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-merge": "5.8.0"
},
"keywords": [
"throttle",
"typescript"
]
}