-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 5.23 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 5.23 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "3dstreet",
"version": "0.5.6",
"description": "Web-based 3D visualization of streets using A-Frame and WebXR",
"main": "dist/3dstreet-editor.js",
"scripts": {
"start": "webpack serve --config webpack.config.js --open --progress",
"start:tunnel": "webpack serve --config webpack.config.js --progress & cloudflared tunnel --url http://localhost:3333",
"start:prod": "npm run dist && npm run prefirebase && serve public -l 3333",
"dist": "webpack --config webpack.prod.config.js --progress",
"dist:staging": "cross-env DEPLOY_ENV=development webpack --config webpack.prod.config.js --progress",
"lint": "eslint --ext .js,.jsx src",
"lint:fix": "eslint --ext .js,.jsx --fix src",
"prefirebase": "cp -R assets public && cp -R ui_assets public && cp index.html public && cp -R dist public",
"prepare": "husky",
"test": "npm run test:core && npm run test:modern",
"test:core": "nyc --reporter=lcov --reporter=text mocha --recursive --full-trace 'test/core/**/*.test.js'",
"test:core:watch": "mocha --recursive --full-trace --watch 'test/core/**/*.test.js'",
"test:modern": "vitest run",
"test:modern:watch": "vitest",
"test:modern:ui": "vitest --ui",
"test:modern:coverage": "vitest run --coverage",
"test:generator": "vitest run test/generator",
"test:rules": "cd public && firebase emulators:exec --only firestore --project demo-3dstreet-rules \"cd .. && vitest run --config vitest.rules.config.js\"",
"prettier": "prettier --write 'src/**/*.js' 'src/**/*.jsx' 'src/**/*.scss'",
"deploy": "npm run dist && npm run prefirebase && cd public && firebase use dstreet-305604 && firebase deploy --only hosting:app3dstreet",
"deploy:staging": "npm run dist:staging && npm run prefirebase && cd public && firebase use dev-3dstreet && firebase deploy --only hosting:dev-3dstreet",
"emulator": "npm run dist:staging && npm run prefirebase && cd public && firebase emulators:start",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": "3dstreet/3dstreet",
"author": "kieran.farr@gmail.com",
"homepage": "https://github.com/3dstreet/3dstreet/",
"license": "AGPLv3",
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@gltf-transform/core": "^4.3.0",
"@gltf-transform/extensions": "^4.3.0",
"@gltf-transform/functions": "^4.3.0",
"@img-comparison-slider/react": "^8.0.2",
"@react-google-maps/api": "^2.20.8",
"@sentry/react": "^10.40.0",
"@sparkjsdev/spark": "^2.0.0",
"@stripe/react-stripe-js": "^6.0.0",
"@stripe/stripe-js": "^9.0.0",
"3d-tiles-renderer": "^0.4.21",
"aframe-atlas-uvs-component": "^3.0.0",
"aframe-cursor-teleport-component": "^1.6.0",
"aframe-extras": "^7.6.1",
"classnames": "^2.5.1",
"date-fns": "^2.30.0",
"draco3dgltf": "^1.5.7",
"expr-eval": "^2.0.2",
"firebase": "^12.0.0",
"firebase-admin": "^12.7.0",
"firebase-functions": "^5.1.1",
"gl-matrix": "^3.4.4",
"jsoncrush": "^1.1.8",
"jszip": "^3.10.1",
"lodash-es": "^4.17.23",
"nanoid": "^5.1.6",
"posthog-js": "^1.356.1",
"prop-types": "^15.8.1",
"radix-ui": "^1.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-select": "^5.10.2",
"three": "0.180.0",
"uuid": "^14.0.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@babel/preset-react": "^7.28.5",
"@firebase/rules-unit-testing": "^5.0.1",
"@storybook/addon-docs": "^9.1.19",
"@storybook/addon-onboarding": "^9.1.19",
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
"@storybook/react-webpack5": "^9.1.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"approvals": "^7.3.0",
"autoprefixer": "^10.4.27",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^8.0.0",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.5.2",
"mocha": "^11.7.5",
"neostandard": "^0.12.2",
"nyc": "^15.1.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"pretty": "^2.0.0",
"rewire": "^7.0.0",
"sass": "^1.97.3",
"sass-loader": "^13.3.3",
"serve": "^14.2.5",
"storybook": "^9.1.19",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.19",
"vitest": "^4.1.4",
"webpack": "^5.105.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.3"
},
"keywords": [
"3d",
"aframe",
"editor",
"inspector",
"three.js",
"tool",
"unity",
"vr",
"virtualreality",
"webvr",
"wysiwyg"
],
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.scss": [
"prettier --write"
]
}
}