forked from google/emoji-scavenger-hunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.48 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
{
"name": "emoji-scavenger-hunt",
"version": "0.1.0",
"description": "Emoji Scavenger Hunt",
"private": true,
"scripts": {
"prep": "yarn && yarn prep:files && yarn build",
"prep:files": "mkdirp dist && mkdirp dist/js && touch dist/js/bundle.js",
"sass-watch": "node-sass -w src/sass/main.scss dist/css/main.min.css",
"sass-build": "node-sass src/sass/main.scss dist/css/main.min.css --output-style compressed",
"js-watch": "watchify src/js/index.ts -p [tsify] -o dist/js/bundle.js -v --debug",
"js-build": "browserify src/js/index.ts -p [tsify] -o dist/js/bundle.js",
"js-compress": "uglifyjs dist/js/bundle.js -c -m -o dist/js/bundle.js",
"dev:server": "dev_appserver.py --port=3000 app.yaml",
"build": "concurrently \"yarn sass-build\" \"yarn js-build && yarn js-compress\"",
"dev": "concurrently \"yarn sass-watch\" \"yarn js-watch\" \"yarn dev:server\"",
"lint": "tslint -p . -t verbose"
},
"devDependencies": {
"@types/lodash": "^4.14.104",
"@types/stats.js": "^0.17.0",
"browserify": "^16.0.0",
"browserify-shim": "^3.8.14",
"concurrently": "^3.5.1",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"node-sass": "^4.7.2",
"stats.js": "^0.17.0",
"tsify": "^3.0.4",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"uglify-js": "^3.3.10",
"watchify": "^3.10.0"
},
"dependencies": {
"@tensorflow/tfjs-converter": "0.2.1",
"@tensorflow/tfjs-core": "0.9.0",
"babel-polyfill": "^6.26.0"
}
}