-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.49 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.49 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
{
"name": "fastlabel-3d-annotation",
"description": "AutomanTools is an open-source software for self-driving AI.",
"version": "0.0.3",
"author": "FastLabel & Human Dataware Lab.",
"license": "Apache License 2.0",
"main": "dist/main.js",
"scripts": {
"webdev": "run-p webdev:*",
"webdev:webpack": "webpack --config webpack.config.web-dev.ts --watch",
"webdev:start": " wait-on ./public/index.html && cross-env NODE_ENV=\"development\" webpack-dev-server --history-api-fallback --config webpack.config.web-dev.ts",
"webprod": "run-p webprod:*",
"webprod:webpack": "webpack --config webpack.config.web-prod.ts --watch",
"webprod:start": " wait-on ./public/index.html && cross-env NODE_ENV=\"development\" webpack-dev-server --history-api-fallback --config webpack.config.web-prod.ts",
"webbuild": "webpack --config webpack.config.web-prod.ts --progress",
"start": "run-s build serve",
"predev": "rimraf dist",
"dev": "run-p dev:*",
"dev:electron": "wait-on ./dist/index.html && cross-env NODE_ENV=\"development\" electron .",
"dev:tsc": "tsc -w -p tsconfig.main.json",
"dev:webpack": "webpack --watch",
"serve": "electron .",
"prebuild": "rimraf dist release",
"build": "webpack --config webpack.config.prod.ts --progress",
"build:pack": "ts-node ./scripts/build.ts",
"package": "run-s build build:pack",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix",
"lint:prettier": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.81",
"@mui/material": "^5.7.0",
"@mui/styles": "^5.7.0",
"@react-three/fiber": "^7.0.6",
"firebase": "^9.6.2",
"i18next": "^20.3.5",
"i18next-browser-languagedetector": "^6.1.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"notistack": "^2.0.5",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-dropzone": "^11.3.4",
"react-i18next": "^11.11.4",
"react-router-dom": "^5.2.0",
"three": "^0.131.3",
"typeface-roboto": "^1.1.13",
"unstated-next": "^1.1.0",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.6",
"@types/mini-css-extract-plugin": "^2.0.1",
"@types/node": "^16.4.0",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/three": "^0.131.0",
"@types/uuid": "^8.3.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"electron-search-devtools": "^1.2.6",
"html-webpack-plugin": "^5.3.2",
"ifdef-loader": "^2.3.0",
"mini-css-extract-plugin": "^2.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.0"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"electron-reload": "^1.5.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"wait-on": "^6.0.0"
}
}