-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "radlense",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "webpack --watch",
"start": "webpack --watch & webpack-dev-server --open-page 'webpack-dev-server'",
"parcel": "./node_modules/.bin/parcel index.html",
"parcelB": "./node_modules/.bin/parcel build index.js",
"parcelBhp": "./node_modules/.bin/parcel build index.html --no-minify --output-dir pub",
"buildwebpack": "webpack --config webpack.config.js",
"buildBabel": "babel src -d public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"parcel-bundler": "^1.8.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@tensorflow/tfjs": "^0.10.3",
"@tensorflow/tfjs-converter": "^0.2.1"
}
}