-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "hyperdrive",
"version": "0.0.1",
"description": "Nostalgia factory",
"main": "./src/index.ts",
"scripts": {
"build": "NODE_ENV=production webpack --mode=production --progress",
"start": "NODE_ENV=development webpack-dev-server --progress",
"download-songs": "ts-node --skip-project --compiler-options '{\"esModuleInterop\":true}' ./src/audio/downloader.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Abbondanzo/HyperDrive.git"
},
"keywords": [
"3d",
"canvas",
"retrowave"
],
"author": "Peter Abbondanzo, Erin Mittmann",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/youtube-dl": "^3.0.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.3.1",
"html-webpack-plugin": "^4.5.0",
"raw-loader": "^4.0.2",
"stats.js": "^0.17.0",
"ts-loader": "^8.0.7",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.3.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"youtube-dl": "^3.0.2"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"gl-matrix": "^3.3.0",
"three": "^0.122.0"
}
}