-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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": "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.js",
"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",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/core-js": "^2.5.5",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}