forked from scalabel/scalabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
195 lines (195 loc) · 5.77 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"name": "scalabel",
"version": "0.3.0",
"bin": "./app/dist/main.js",
"files": [
"app/*"
],
"repository": {
"type": "git",
"url": "https://github.com/scalabel/scalabel"
},
"license": "Apache-2.0",
"homepage": "https://www.scalabel.ai",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"watch-dev": "webpack --watch --config webpack.config.js --mode=development",
"serve": "node --max-old-space-size=8192 app/dist/main.js --config ./local-data/scalabel/config.yml",
"lint": "eslint -c .eslintrc.json --ext .ts,.tsx app/src/ app/test",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"app/src/**/*.{ts,tsx}"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"globalSetup": "./app/test/setup/global_setup.ts",
"setupFiles": [
"./app/test/setup/local_setup.ts"
],
"setupFilesAfterEnv": [
"./app/test/setup/setup_jest_after_env.ts",
"jest-expect-message"
],
"globalTeardown": "./app/test/setup/global_teardown.ts",
"roots": [
"app/test"
],
"testURL": "http://localhost:8687",
"transform": {
"^.+\\.tsx?$": "ts-jest",
"\\.js?$": "babel-jest"
},
"testEnvironment": "jest-environment-jsdom-fourteen",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"husky": {
"hooks": {}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.13.13",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@fingerprintjs/fingerprintjs": "^3.1.1",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@mapbox/node-pre-gyp": "^1.0.4",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/styles": "^4.11.4",
"@mui/material": "^5.1.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/amazon-cognito-auth-js": "^1.2.2",
"@types/blueimp-md5": "^2.18.0",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.4",
"@types/formidable": "^2.0.5",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/jest-expect-message": "^1.0.3",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/material-ui": "^0.21.8",
"@types/mock-fs": "^4.13.0",
"@types/node": "^15.0.1",
"@types/orderedmap": "^1.0.0",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-test-renderer": "^17.0.1",
"@types/redis": "^2.8.28",
"@types/redux-logger": "^3.0.8",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.36",
"@types/supertest": "^2.0.12",
"@types/three": "^0.127.1",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"amazon-cognito-auth-js": "^1.3.3",
"aws-sdk": "^2.897.0",
"axios": "^0.21.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"blueimp-md5": "^2.19.0",
"body-parser": "^1.19.0",
"canvas": "^2.7.0",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^6.2.0",
"ejs": "^3.1.6",
"eslint": "^8.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^4.1.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"formidable": "^2.0.1",
"fs": "0.0.1-security",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-expect-message": "^1.0.2",
"jquery": "^3.6.0",
"js-yaml": "^4.1.0",
"jwks-rsa": "^2.0.3",
"lodash": "^4.17.21",
"mock-fs": "^4.14.0",
"moment": "^2.29.1",
"nanoid": "^3.1.31",
"net": "^1.0.2",
"npx": "^10.2.2",
"orderedmap": "^1.1.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lifecycles-compat": "^3.0.4",
"react-page-visibility": "^6.4.0",
"react-redux": "^7.2.4",
"react-style-proptype": "^3.2.2",
"react-test-renderer": "^17.0.2",
"react-toastify": "^8.0.2",
"redis": "^3.1.2",
"redux": "^4.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.1",
"regenerator-runtime": "^0.13.7",
"reselect": "^4.0.0",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1",
"source-map-loader": "^2.0.1",
"source-map-support": "^0.5.19",
"style-loader": "^3.2.1",
"supertest": "^6.2.3",
"terser": "5.7.0",
"three": "^0.137.0",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"uws": "^200.0.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^3.0.0",
"winston": "^3.3.3",
"xss": "^1.0.8",
"yargs": "^17.0.0"
}
}