forked from briqNFT/briq-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.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
{
"name": "briq-builder",
"version": "2.0.3c",
"description": "Frontend builder for the briq protocol",
"homepage": "https://github.com/briqNFT/briq-builder/",
"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": {
"@argent/get-starknet": "^6.0.1",
"@cartridge/controller": "^0.3.14",
"@google/model-viewer": "^2.0",
"@jaames/iro": "^5.5",
"@sentry/tracing": "^6.16",
"@sentry/vue": "^6.16",
"canvas-confetti": "^1.6.0",
"chart.js": "^3.8.0",
"connect": "^3.7",
"fflate": "^0.7.3",
"get-starknet": "^2.0",
"json-bigint": "git+https://github.com/briqNFT/json-bigint.git#fix-ts",
"pinia": "^2.0",
"qrcode": "^1.5.1",
"starknet": "^4.0",
"stats.js": "^0.17",
"three": "^0.144",
"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/node": "^17",
"@types/three": "^0.144",
"@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.26",
"autoprefixer": "^10.4",
"c8": "^7.11.0",
"eslint": "^8.14.0",
"eslint-plugin-vue": "^9.1",
"jsdom": "^20.0.0",
"postcss": "^8.4",
"postcss-nesting": "^10.1.10",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.6.0",
"tailwindcss": "^3.0",
"undici": "^5.13.0",
"vite-svg-loader": "^4.0",
"vitest": "^0.26"
}
}