-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "react-native-pie-chart",
"version": "2.1.1",
"description": "pie chart for react native",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"pretty": "prettier './src/**/*.ts*' --write --config .prettierrc",
"lint": "eslint --quiet './src/**/*.ts*'",
"check": "npm run pretty && npm run lint && npm run tsc",
"build": "babel src --out-dir dist --extensions '.ts,.tsx'"
},
"repository": {
"type": "git",
"url": "https://github.com/genexu/react-native-pie-chart.git"
},
"author": "Gene Xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/genexu/react-native-pie-chart/issues"
},
"keywords": [
"react",
"react-native",
"chart",
"pie-chart"
],
"peerDependencies": {
"react": ">=16.6.0",
"react-native": ">=0.58.0",
"@react-native-community/art": ">=1.1.2"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.7",
"@babel/eslint-parser": "7.19.1",
"@babel/runtime": "7.20.7",
"@react-native-community/art": "1.2.0",
"@react-native-community/eslint-config": "3.2.0",
"@types/react": "18.0.26",
"@types/react-native": "0.70.8",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"metro-react-native-babel-preset": "0.73.6",
"prettier": "2.8.1",
"typescript": "4.9.4"
}
}