-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
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
{
"name": "3dstreet",
"version": "0.5.4",
"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: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": "nyc --reporter=lcov --reporter=text mocha --recursive --full-trace test/*.test.js",
"test:watch": "mocha --recursive --full-trace --watch test/*.test.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"
},
"repository": "3dstreet/3dstreet",
"author": "[email protected]",
"homepage": "https://github.com/3dstreet/3dstreet/",
"license": "AGPLv3",
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@react-google-maps/api": "^2.19.3",
"@stripe/stripe-js": "^3.4.1",
"aframe-atlas-uvs-component": "^3.0.0",
"aframe-cursor-teleport-component": "^1.6.0",
"aframe-extras": "^7.5.1",
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"date-fns": "^2.30.0",
"firebase": "^10.9.0",
"firebase-admin": "^12.1.1",
"firebase-functions": "^5.0.1",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.7",
"posthog-js": "^1.161.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.4.0",
"stripe": "^15.8.0",
"three": "0.145.0",
"uuid": "^9.0.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@babel/preset-react": "^7.23.3",
"@types/uuid": "^9.0.0",
"approvals": "^7.1.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.4.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"pretty": "^2.0.0",
"rewire": "^7.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"serve": "^14.2.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.14",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"keywords": [
"3d",
"aframe",
"editor",
"inspector",
"three.js",
"tool",
"unity",
"vr",
"virtualreality",
"webvr",
"wysiwyg"
],
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.scss": [
"prettier --write"
]
}
}