-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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": "matt",
"version": "1.0.2",
"description": "Moral Attitudes Study",
"private": true,
"type": "module",
"scripts": {
"alphaPinda": "cd character-animator && mkdir -p out && for i in *.mov; do ffmpeg -y -i \"$i\" -c:v libvpx-vp9 -b:v 500k -c:a libvorbis \"out/${i%.*}.webm\"; done && for i in *.mov; do avconvert --source \"$i\" --preset PresetHEVC1920x1080WithAlpha --verbose --replace --output \"out/${i%.*}.mov\"; done",
"voxify": "node src/voxify/",
"start": "webpack serve",
"clean": "rimraf dist",
"build": "npm run clean && NODE_ENV=production webpack",
"deploy": "npm run build && rsync -avu --chmod=a+rwx,o-w,ug+s,+t,u-s,-t dist/ ccp-odcJ:/srv/ccp-odc/matt/"
},
"repository": {
"type": "git",
"url": "[email protected]:ccp-eva/matt.git"
},
"keywords": [
"online experiment",
"typescript",
"gsap",
"animation"
],
"author": "Steven Kalinke <[email protected]> (https://github.com/kalaschnik)",
"contributors": [
"Noemi Thiede <[email protected]> (https://www.eva.mpg.de/de/comparative-cultural-psychology/staff/noemi-thiede/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ccp-eva/matt/issues"
},
"homepage": "https://github.com/ccp-eva/matt",
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/toastify-js": "^1.11.1",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"jsdom": "^21.1.1",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"postcss-nesting": "^11.2.2",
"postcss-preset-env": "^8.3.2",
"remark-html": "^15.0.2",
"remark-loader": "^5.0.0",
"rimraf": "^5.0.0",
"style-loader": "^3.3.2",
"svgo-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"yaml-loader": "^0.8.0"
},
"dependencies": {
"@types/recordrtc": "^5.6.11",
"detectrtc": "^1.4.1",
"gsap": "^3.11.5",
"lodash": "^4.17.21",
"recordrtc": "^5.6.2",
"svgson": "^5.3.1",
"toastify-js": "^1.12.0"
}
}