-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
34 lines (34 loc) · 993 Bytes
/
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
{
"name": "city_tour",
"version": "3.0.0",
"description": "City Tour",
"private": true,
"repository": "https://github.com/jstrait/city-tour.git",
"author": "Joel Strait",
"license": "MIT",
"homepage": "https://joelstrait.com/citytour/",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"serve": "webpack serve --config webpack.config.js --mode production --compress --no-bonjour --no-hot --no-live-reload --no-static --no-web-socket-server",
"test": "jest"
},
"browserslist": [
"supports es6"
],
"dependencies": {
"three": "0.162.0"
},
"devDependencies": {
"@babel/core": "7.24.8",
"@babel/preset-env": "7.24.8",
"babel-loader": "9.1.3",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"jest": "29.7.0",
"mini-css-extract-plugin": "2.9.0",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
}
}