-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "lanzarote-3d",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"lil-gui": "^0.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.0.0",
"three": "^0.149.0",
"three-mesh-bvh": "^0.5.23"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.18.6",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.149.0",
"babel-loader": "^9.1.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.3",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"clean": "rm -R dist || true",
"start": "webpack serve --mode development --open --hot",
"dev": "yarn start",
"build": "webpack --mode production",
"build-staging": "yarn clean && yarn build",
"delete-staging": "aws s3 rm s3://lanzarote3d --recursive",
"deploy-staging": "yarn build-staging && yarn tag-staging && yarn delete-staging && yarn upload-staging",
"upload-staging": "aws s3 cp dist s3://lanzarote3d --recursive",
"tag-staging": "git tag STAGING-$(date '+%F_%H%M')",
"test": "jest --watch"
},
"types": "index.d.ts",
"author": "ivan l."
}