-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.81 KB
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
{
"name": "autorender",
"version": "0.1.0",
"description": "After Effects auto-rendering application for SurfTheMusic",
"main": "main.js",
"scripts": {
"start:local": "npm start & cd ./frontend && npm run start:local",
"start:local-mac": "SKIP_CLEANUP=true BINARY=$(echo \"/Applications/Adobe After Effects CC 2019/aerender\") npm start & cd ./frontend && npm run start:local",
"start:local-mac-dev": "SKIP_CLEANUP=true BINARY=$(echo \"/Applications/Adobe After Effects CC 2019/aerender\") npm start & cd ./frontend && npm run dev:local",
"sampleRender:mac": "BINARY=$(echo \"/Applications/Adobe After Effects CC 2019/aerender\") node sampleRender.js",
"sampleRender:reuse": "cross-env REUSE=true node sampleRender.js",
"start": "npm --prefix ./webserver start",
"test": "echo \"Error: no test specified\" && exit 1",
"test-render": "nexrender-cli --file testRender.json",
"install": "node modules/nexrender-action-encode/link.js",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizcosity/AutoRender.git"
},
"author": "Aaron Baw",
"license": "ISC",
"bugs": {
"url": "https://github.com/vizcosity/AutoRender/issues"
},
"homepage": "https://github.com/vizcosity/AutoRender#readme",
"dependencies": {
"@nexrender/action-copy": "^1.5.7",
"@nexrender/action-encode": "^1.12.4",
"@nexrender/core": "^1.5.7",
"cli": "^1.0.1",
"datauri": "^2.0.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"file-type": "^12.2.0",
"mkdirp": "^0.5.1",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.0.1",
"react-spinners": "^0.6.1",
"rimraf": "^3.0.0",
"typescript": "^3.8.3",
"uuid-random": "^1.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"cross-env": "^7.0.2"
}
}