-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
78 lines (78 loc) · 2.25 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
74
75
76
77
78
{
"name": "@noriginmedia/norigin-spatial-navigation",
"version": "2.2.2",
"description": "React hooks based Spatial Navigation solution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"eslint": "eslint src",
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"prepublishOnly": "npm run eslint",
"prepare": "npm run build",
"publish": "npm publish --access public",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoriginMedia/norigin-spatial-navigation.git"
},
"keywords": [
"react",
"react-hooks",
"spatial-navigation",
"remote-control-navigation",
"tv-navigation"
],
"author": "Dmitriy Bryokhin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoriginMedia/norigin-spatial-navigation/issues"
},
"homepage": "https://github.com/NoriginMedia/norigin-spatial-navigation#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.179",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.3",
"ts-jest": "^29.1.4",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"pre-commit": [
"eslint"
]
}