-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
package.json
File metadata and controls
73 lines (73 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
73
{
"name": "flatlist-react",
"version": "1.5.14",
"description": "A helpful utility component to handle lists in react like a champ",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"format": "prettier --write src/**/*.ts{,x}",
"lint": "eslint src/**/*.ts{,x}",
"lint:fix": "eslint --fix src/**/*.ts{,x}",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run format && npm run lint && npm run test && tsc",
"build:local": "npm run format && npm run lint && tsc",
"local": "nodemon --watch ./src -e ts,tsx --exec 'npm run build:local && npm pack'",
"test": "jest --silent",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/beforesemicolon/flatlist-react"
},
"keywords": [
"react",
"utility",
"flatlist"
],
"author": "Elson T. Correia",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/core-js": "^2.5.8",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/warning": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"@typescript-eslint/utils": "^8.59.1",
"eslint": "^10.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"ts-jest": "^29.4.9",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}