-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 968 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 968 Bytes
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
{
"name": "react-plotly-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel src/index.html --out-dir build/debug",
"build": "parcel build src/index.html --out-dir build/release --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syaring/react-plotly-example.git"
},
"author": "syaring",
"license": "ISC",
"bugs": {
"url": "https://github.com/syaring/react-plotly-example/issues"
},
"homepage": "https://github.com/syaring/react-plotly-example#readme",
"devDependencies": {
"@types/plotly.js": "^1.50.12",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-plotly.js": "^2.2.4",
"typescript": "^3.9.3"
},
"dependencies": {
"plotly.js": "^1.54.1",
"react": "^16.5.2",
"react-dom": "^16.3.2",
"react-plotly.js": "^2.4.0"
}
}