forked from tensorflow/tfjs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
{
"name": "tensorflow-js-website",
"version": "0.0.1",
"private": true,
"hexo": {
"version": "3.6.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"prep": "git submodule init && git submodule update && git submodule foreach git pull origin master && yarn",
"build": "export NODE_OPTIONS=--max-old-space-size=8192 hexo clean && ts-node build-scripts/generate-site.ts",
"post-build": "babel public/js/layout.js -o public/js/layout.js && babel public/js/api.js -o public/js/api.js",
"build-vis-api": "ts-node build-scripts/build-vis-api.ts --local",
"build-node-api": "ts-node build-scripts/build-node-api.ts --local",
"build-api": "ts-node build-scripts/build-api.ts --local",
"build-and-serve": "yarn build-api && yarn build-vis-api && yarn serve",
"build-prod": "export NODE_OPTIONS=--max-old-space-size=8192 yarn && yarn prep && hexo clean && ts-node build-scripts/build-api.ts && ts-node build-scripts/build-vis-api.ts && ts-node build-scripts/build-node-api.ts && yarn build && yarn post-build",
"serve": "http-server public",
"deploy-prod": "firebase deploy --project jstensorflow",
"test-ci": "./test-scripts/test-ci.sh"
},
"dependencies": {
"@tensorflow/tfjs": "1.2.8",
"@tensorflow/tfjs-node": "1.2.8",
"@tensorflow/tfjs-vis": "1.1.0",
"babel-cli": "~6.26.0",
"babel-preset-es2015": "~6.24.1",
"commander": "~2.14.1",
"hexo": "~3.6.0",
"hexo-generator-archive": "~0.1.4",
"hexo-generator-category": "~0.1.3",
"hexo-generator-tag": "~0.2.0",
"hexo-renderer-ejs": "~0.3.0",
"hexo-renderer-handlebars": "~2.0.2",
"hexo-renderer-markdown-it": "^3.4.1",
"hexo-renderer-sass": "~0.3.2",
"hexo-renderer-stylus": "~0.3.1",
"hexo-server": "~0.2.0",
"highlight.js": "^9.15.2",
"http-server": "^0.11.1",
"markdown-it": "^8.4.1",
"material-components-web": "^0.32.0",
"mkdirp": "~0.5.1",
"semver-compare": "^1.0.0",
"shelljs": "~0.8.1",
"ts-node": "~8.0.2",
"typescript": "3.3.3333"
},
"devDependencies": {
"@types/node": "~9.4.6",
"clang-format": "~1.2.4",
"firebase-tools": "~7.2.0"
}
}