-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wgbh-springroll-game-template",
"version": "1.0.0",
"description": "WGBH SpringRoll Game Boilerplate",
"main": "deploy/index.js",
"scripts": {
"start": "npm run config && webpack-dev-server --env dev & npm run config:watch",
"dev": "webpack-dev-server --env dev",
"clean": "rm -rf deploy",
"build": "npm run build:release",
"build:release": "npm run clean && npm run config && webpack --env prod",
"build:debug": "npm run config && webpack --env dev",
"config": "node tasks/concat-config.js",
"quickcaptions": "node tasks/quick-captions.js && npm run config",
"rhubarb": "node tasks/rhubarb-audio.js && npm run config",
"config:watch": "onchange 'src/config/*.json' -- npm run config",
"checkaudio": "node tasks/check-audio.js",
"crushimages": "node tasks/minimize-images.js"
},
"config": {
"directory": "src/config/",
"audioDirectory": "static/sounds/",
"captionconf": {
"audioDirectory": "static/sounds/vo/",
"audioListFile": "src/config/captions.txt",
"outputDirectory": "src/config/"
},
"rhubarbconf": {
"audioDirectory": "static/sounds/vo",
"audioListFile": "src/config/captions.txt",
"outputDirectory": "src/config/",
"rhubarbBinary": "/Applications/rhubarb-lip-sync-1.10.0-osx/rhubarb"
}
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:7999/sroll/wgbh-springroll-game-template.git"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"imagemin": "^6.1.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"onchange": "^7.1.0",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@pixi/animate": "^2.0.5",
"@pixi/sound": "^4.4.1",
"pixi.js": "^6.5.8",
"springroll": "^2.4.4",
"wgbh-springroll-game": "^2.0.0"
}
}