-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "briq-builder",
"version": "2.2.0",
"description": "Frontend builder for the briq protocol",
"homepage": "/~https://github.com/briqNFT/briq-builder/",
"private": true,
"workspaces": [
".",
"briqout",
"briqout-server"
],
"scripts": {
"dev": "vite",
"stage": "vite build --ssr server/main.ts --outDir dist_server/ -m staging && vite build --outDir dist/ -m staging",
"build": "vite build --ssr server/main.ts --outDir dist_server/ && vite build --outDir dist/",
"serve": "vite preview",
"test": "vitest run",
"coverage": "vitest run --coverage",
"server": "node dist_server/main.mjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix"
},
"dependencies": {
"@cartridge/controller": "^0.3.14",
"@google/model-viewer": "~3.1.0",
"@jaames/iro": "^5.5",
"@sentry/tracing": "^6.16",
"@sentry/vue": "^6.16",
"@walnuthq/sdk": "^1.1.8",
"briqout": "^0.1.0",
"canvas-confetti": "^1.6.0",
"connect": "^3.7",
"fflate": "^0.7.3",
"json-bigint": "git+/~https://github.com/briqNFT/json-bigint.git#fix-ts",
"qrcode": "^1.5.1",
"starknet": "^5.21",
"starknetkit": "^1.0.8",
"stats.js": "^0.17",
"three": "^0.151",
"uuid": "^8",
"vite": "^4.0",
"vox-reader": "git+/~https://github.com/FlorianFe/vox-reader.js.git",
"vue": "^3.2",
"vue-pdf-embed": "^1.1",
"vue-router": "^4.0"
},
"devDependencies": {
"@types/connect": "^3.4",
"@types/filesystem": "^0.0.32",
"@types/node": "^18",
"@types/three": "^0.151",
"@types/uuid": "^8.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitejs/plugin-vue": "^4.0",
"@vitest/coverage-c8": "^0.30",
"autoprefixer": "^10.4",
"c8": "^7.11.0",
"eslint": "^8.14.0",
"eslint-plugin-vue": "^9.1",
"get-starknet": "^2.0",
"jsdom": "^22",
"postcss": "^8.4",
"postcss-nesting": "^11",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.6.0",
"tailwindcss": "^3.0",
"vite-svg-loader": "^4.0",
"vitest": "^0.30"
}
}