-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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": "react-native-flex",
"version": "1.3.0",
"private": false,
"description": "A simple react-native flex grid component to build layouts with elegance",
"author": "Eduardo Borges<euduardoborges@gmail.com>",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/eduardoborges/react-native-flex.git"
},
"source": "./src/index.tsx",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "./scripts.sh build",
"dev": "./scripts.sh dev",
"lint": "./scripts.sh lint",
"prepare": "./scripts.sh prepare"
},
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
],
"peerDependencies": {
"react": ">=16.4 || 17 || 18 || 20",
"react-native": ">=0.64"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.3",
"@semantic-release/npm": "11.0.1",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/node": "16",
"@types/react": ">=16.4 || 17 || 18",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"esbuild": "0.19.7",
"eslint": "8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-perfectionist": "^2.4.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"read-pkg": "9.0.1",
"rollup": "4.5.1",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-esbuild": "6.1.0",
"semantic-release": "22.0.8",
"simple-git-hooks": "2.9.0",
"typescript": "5.1"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run build"
}
}