-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "tfjsx",
"description": "Tensorflow.jsx - Tensorflow.js with JSX Syntax",
"version": "1.0.1",
"main": "dist/index.bundle.js",
"license": "Apache-2.0",
"author": "Mike Shi <hi@michaelshi.me>",
"repository": {
"type": "git",
"url": "https://github.com/ModelDepot/tfjsx"
},
"peerDependencies": {
"@tensorflow/tfjs": "^0.11.x",
"react": "^16.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "8",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^5.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^22.4.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"scripts": {
"build": "webpack --mode=production",
"test": "jest",
"watch": "webpack --watch"
},
"dependencies": {
"plotly.js": "^1.38.3",
"react-plotly.js": "^2.2.0"
}
}