-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
{
"name": "react-html-refs",
"version": "1.0.2",
"description": "React html hooks to help us better manage html elements on React",
"main": "dist/infrastructure/index.js",
"types": "dist/infrastructure/index.d.ts",
"typings": "dist/infrastructure/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/filipomar/react-html-refs.git"
},
"scripts": {
"prepublishOnly": "npm run prettier && npm run lint && npm run coverage && npm run build",
"build": "rm -rf dist/ && tsc --project publictsconfig.json",
"lint": "eslint --config .eslintrc.js \"./**/*.{ts,tsx}\"",
"prettier": "prettier --parser typescript --config .prettierrc.js --write \"src/**/*.{ts,tsx}\"",
"start": "webpack-dev-server --config ./test/local/webpack.config.ts",
"test": "jest --no-cache --maxWorkers=2",
"coverage": "jest --no-cache --coverage --maxWorkers=2"
},
"keywords": [
"react",
"html",
"refs",
"scrolling",
"scroll",
"focus"
],
"author": {
"name": "Filipe Pomar",
"email": "filipomar@hotmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/filipomar/react-html-refs/issues"
},
"homepage": "https://github.com/filipomar/react-html-refs#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^10.4.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/webpack": "^4.41.25",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^4.5.0",
"jest": "^25.5.4",
"path": "^0.12.7",
"react-dom": "^16.14.0",
"ts-jest": "^25.5.1",
"ts-loader": "^8.0.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.14.0"
}
}