-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.01 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
{
"name": "p1",
"version": "1.0.0",
"description": "A VR instrument inspired by the Ondes Martenot",
"main": "index.js",
"scripts": {
"test": "webpack --config ./bundler/webpack.common.js",
"dev": "cross-env SSL_CRT_FILE=.cert/cert.pem SSL_KEY_FILE=.cert/key.pem webpack serve --config ./bundler/webpack.dev.js",
"build": "webpack --config ./bundler/webpack.prod.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"lodash.throttle": "^4.1.1",
"mini-css-extract-plugin": "^2.7.4",
"portfinder-sync": "^0.0.2",
"raw-loader": "^4.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.12.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"three": "0.152.2"
}
}