-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 764 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 764 Bytes
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
{
"name": "3d-music-visualizer",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"watch": "http-server -o ./example/",
"dev": "webpack --mode=development",
"build": "webpack --mode=production"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/three": "^0.139.0",
"babel-loader": "^8.2.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.0",
"webpack-merge": "^5.8.0",
"http-server": "^14.1.0"
},
"dependencies": {
"three": "^0.139.2"
}
}