-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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": "fivem-nui-react-lib",
"description": "React provider and hooks for FiveM NUI",
"author": "fran <[email protected]>",
"license": "GPL-3.0-or-later",
"version": "2.3.13",
"main": "dist/index.js",
"scripts": {
"build": "yarn rimraf dist && tsc",
"lint": "yarn eslint lib",
"prepare": "yarn lint && yarn build && husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfrader/fivem-nui-react-lib.git"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"lint-staged": {
"*.js,*.ts": "yarn lint",
"*.{js,ts,css,md}": "prettier --write"
},
"keywords": [
"fivem",
"gta5",
"gtarp",
"nui",
"react",
"lib",
"library",
"events"
]
}