-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "st-panorama",
"version": "1.0.0",
"description": "st-panorama",
"browserslist": [
"last 2 versions",
"> 5%"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.23.3",
"@photo-sphere-viewer/autorotate-plugin": "5.7.4",
"@photo-sphere-viewer/core": "5.7.4",
"@photo-sphere-viewer/visible-range-plugin": "5.7.4",
"@types/node": "^20.14.2",
"@types/three": "^0.161.2",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"buffer-image-size": "^0.6.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"html-prettify": "^1.0.7",
"html-webpack-plugin": "^5.6.0",
"js-beautify": "^1.15.1",
"mini-css-extract-plugin": "^1.6.2",
"normalize.css": "^8.0.1",
"postcss": "^8.4.38",
"postcss-loader": "^5.3.0",
"rehype-format": "^5.0.0",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"rimraf": "^5.0.7",
"sass": "^1.77.4",
"sass-lint": "^1.13.1",
"sass-loader": "^11.1.1",
"supports-webp": "^3.0.0",
"svg-dimensions": "^1.0.2",
"terser-webpack-plugin": "^5.3.10",
"three": "^0.161.0",
"unified": "^11.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.10.0"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"private": false,
"scripts": {
"build": "webpack --config configuration/webpack.dev.config.js --mode=development",
"watch": "webpack --config configuration/webpack.dev.config.js --mode=development --watch",
"bundle": "npm install && npm run watch",
"dev": "webpack serve --config configuration/webpack.dev.config.js --mode=development",
"production": "webpack --config configuration/webpack.prod.config.js --mode=production",
"lint:sass": "sass-lint -v -q",
"clean-dist": "rimraf dist",
"lint:js": "eslint --ext .js src/js/",
"stats": "webpack --config configuration/webpack.prod.config.js --mode=production --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
"layout-test-sass": "sass .\\layout-test\\v2\\scss\\styles.scss:layout-test\\v2\\app.css -w",
"layout-test-host": "http-server -p 8001 layout-test\\v2"
},
"target": "web"
}