This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.52 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
112
113
114
115
116
{
"name": "3dstreet-editor",
"version": "0.4.13",
"description": "An open source street editor.",
"main": "dist/3dstreet-editor.js",
"scripts": {
"start:dev": "webpack serve --config webpack.config.js --mode development --open --hot --progress",
"start:prod": "serve dist -l 3333",
"start:build": "webpack --config webpack.prod.config.js --mode production --progress",
"dist": "npm run dist:max && npm run dist:min",
"dist:max": "cross-env MINIFY=false npm run start:build",
"dist:min": "cross-env MINIFY=true npm run start:build",
"lint": "npm run lintfile 'src/**/*.js*'",
"lint:css": "stylelint src/css/main.css",
"lintfile": "eslint",
"prefirebase": "cp -R assets public && cp {index.html,favicon.ico} public && cp -R dist public",
"prepare": "husky install",
"prepublish": "npm run dist",
"prettier": "prettier --write 'src/**/*.js*'",
"test": "jest --watch",
"test:ci": "jest",
"deploy": "npm run prefirebase && cd public && firebase deploy --only hosting:app3dstreet",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": "3dstreet/3dstreet-editor",
"license": "AGPLv3",
"dependencies": {
"@types/uuid": "^9.0.0",
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"date-fns": "^2.30.0",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"firebase": "^9.23.0",
"lodash-es": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-select": "^5.4.0",
"sass": "^1.69.5",
"serve": "^14.2.1",
"three": "0.145.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.17.12",
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-interactions": "^7.6.3",
"@storybook/addon-links": "^7.6.3",
"@storybook/addon-onboarding": "^1.0.9",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.6.3",
"@storybook/react": "^7.6.3",
"@storybook/react-webpack5": "^7.6.3",
"@storybook/test": "^7.6.3",
"autoprefixer": "^10.4.12",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.6.15",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^8.0.0",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"storybook": "^7.6.3",
"style-loader": "^3.3.3",
"stylelint": "^14.13.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-order": "^5.0.0",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"keywords": [
"3d",
"aframe",
"editor",
"inspector",
"three.js",
"tool",
"unity",
"vr",
"virtualreality",
"webvr",
"wysiwyg"
],
"lint-staged": {
"*.js*": "prettier --write"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}