-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "tensoflow.js-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel src/index.html",
"build": "parcel build ./src/index.html --public-url ./",
"push-gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose"
},
"author": "Adam Sterling",
"license": "ISC",
"dependencies": {
"@tensorflow-models/toxicity": "^1.2.2",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^3.12.0",
"@tensorflow/tfjs-backend-wasm": "^3.12.0",
"@tensorflow/tfjs-node": "^3.12.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"express": "^4.17.2",
"jquery": "^3.6.0",
"material-icons": "^1.10.4",
"materialize-css": "^1.0.0-rc.2"
},
"devDependencies": {
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "./node_modules/@tensorflow/tfjs-backend-wasm/dist",
"excludeGlob": "**/!(*.wasm)"
}
]
}
}