-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "neural-transfer",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "budo main.js:dist/bundle.js --live --host localhost",
"prep": "yarn && mkdirp dist",
"build": "browserify main.js -o dist/bundle.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-plugin-syntax-async-functions": "~6.13.0",
"babel-plugin-transform-regenerator": "~6.26.0",
"babel-preset-es2015": "~6.24.1",
"babelify": "~7.3.0",
"budo": "^10.0.4",
"eslint": "~4.11.0",
"eslint-config-google": "~0.9.1",
"mkdirp": "~0.5.1",
"uglify-js": "^3.3.17",
"tailwindcss": "^3.4.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
}
]
]
},
"dependencies": {
"@tensorflow/tfjs": "^4.17.0",
"babel-polyfill": "^6.26.0"
}
}