-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.56 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.56 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
{
"name": "metacity-studio",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && mv ./.next/static ./.next/standalone/.next/static",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"test": "NODE_ENV=test vitest --no-file-parallelism",
"typeorm": "ts-node -r tsconfig-paths/register node_modules/typeorm/cli -d features/db/data-source.ts",
"migrations:run": "npm run typeorm migration:run",
"migrations:generate": "npm run typeorm migration:generate",
"migrations:revert": "npm run typeorm migration:revert",
"migrations:drop-schema": "npm run typeorm schema:drop",
"migrations:reset-schema": "npm run migrations:drop-schema && npm run migrations:run",
"migrations:create": "typeorm migration:create"
},
"dependencies": {
"@adobe/react-spectrum": "^3.35.1",
"@auth0/nextjs-auth0": "^3.5.0",
"@loaders.gl/core": "^4.2.2",
"@loaders.gl/gltf": "^4.2.2",
"@metacity/geometry": "^1.0.0",
"@react-spectrum/color": "^3.0.0-rc.1",
"@react-spectrum/toast": "^3.0.0-beta.12",
"@shortercode/webzip": "^1.1.1-0",
"@spectrum-icons/illustrations": "^3.6.13",
"allotment": "^1.20.2",
"axios": "^1.7.2",
"class-transformer": "^0.5.1",
"clsx": "^2.1.1",
"csv-parse": "^5.5.6",
"d3-scale-chromatic": "^3.1.0",
"form-data": "^4.0.0",
"formidable": "^3.5.1",
"gl-matrix": "^3.4.3",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"mime": "^4.0.3",
"minio": "^8.0.0",
"next": "14.2.3",
"pg": "^8.11.5",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"reflect-metadata": "^0.2.2",
"shpts": "^1.0.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.20",
"typeorm-naming-strategies": "^4.1.0",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@swc/core": "^1.5.7",
"@testing-library/react": "^15.0.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"jsdom": "^24.1.0",
"postcss": "^8",
"typescript": "^5.6.2",
"unplugin-swc": "^1.4.5",
"vitest": "^1.6.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.18.0"
}
}