forked from scalabel/scalabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
170 lines (170 loc) · 5.05 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
{
"name": "scalabel",
"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 app/dist/main.js --config ./local-data/scalabel/config.yml --max-old-space-size=8192",
"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"
],
"globalTeardown": "./app/test/setup/global_teardown.ts",
"roots": [
"app/test"
],
"testURL": "http://localhost:8687",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jest-environment-jsdom-fourteen"
},
"husky": {
"hooks": {}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^8.0.8",
"@types/amazon-cognito-auth-js": "^1.2.2",
"@types/express": "^4.17.8",
"@types/express-formidable": "^1.0.4",
"@types/fingerprintjs2": "^2.0.0",
"@types/fs-extra": "^8.1.1",
"@types/jest": "^24.9.1",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.161",
"@types/material-ui": "^0.21.8",
"@types/mock-fs": "^4.10.0",
"@types/node": "^12.12.55",
"@types/orderedmap": "^1.0.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-event-listener": "^0.4.11",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.3",
"@types/redis": "^2.8.27",
"@types/redux-logger": "^3.0.8",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@types/yargs": "^13.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"amazon-cognito-auth-js": "^1.3.3",
"awesome-typescript-loader": "^5.2.1",
"aws-sdk": "^2.747.0",
"axios": "^0.21.1",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"canvas": "^2.6.1",
"circular-dependency-plugin": "^5.0.2",
"copy-webpack-plugin": "^4.5.2",
"ejs": "^3.1.5",
"eslint": "^7.8.1",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-jwt": "^5.3.3",
"fingerprintjs2": "^2.1.2",
"fs": "0.0.1-security",
"fs-extra": "^8.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jquery": "^3.5.1",
"js-yaml": "^3.14.0",
"jsdom-screenshot": "^3.2.0",
"jwks-rsa": "^1.9.0",
"lodash": "^4.17.20",
"mock-fs": "^4.13.0",
"moment": "^2.27.0",
"nanoid": "^3.1.12",
"net": "^1.0.2",
"node-pre-gyp": "^0.14.0",
"npx": "^10.2.2",
"orderedmap": "^1.1.1",
"prettier": "^2.1.1",
"prettier-eslint": "^11.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-event-listener": "^0.6.6",
"react-page-visibility": "^6.2.0",
"react-redux": "^7.2.1",
"react-split-pane": "^0.1.92",
"react-test-renderer": "^16.13.1",
"redis": "^2.8.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.1",
"regenerator-runtime": "^0.12.1",
"reselect": "^4.0.0",
"socket.io": "^2.3.0",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.19",
"terser": "3.14.1",
"three": "^0.110.0",
"ts-jest": "^26.3.0",
"ts-loader": "^6.2.2",
"typescript": "^4.0.2",
"uws": "^10.148.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2",
"winston": "^3.3.3",
"xss": "^1.0.8",
"yargs": "^14.2.3"
}
}