-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "react-native-plotly",
"version": "6.0.0",
"description": "Plotly.js in a react native webview",
"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"update-plotly": "node scripts/getPlotly.js",
"dev": "cd examples/basic && yarn && expo start",
"precommit": "lint-staged",
"release": "np",
"test": "echo \"No tests yet\""
},
"keywords": [
"react-native",
"plotly",
"plotly.js",
"chart",
"graph"
],
"author": "Ryan Baxley",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-native": "^0.63.50",
"husky": "^4.2.5",
"lint-staged": "^10.2.10",
"np": "^7.5.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-native": "^0.63.4",
"react-native-webview": "11.2.3",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"lint-staged": {
"linters": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
]
}
}
}