-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.91 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
{
"name": "3dp-frontend",
"private": true,
"sideEffects": false,
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "remix-serve build",
"build": "pnpm build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"pnpm dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css"
},
"dependencies": {
"@blueprintjs/core": "5.17.6",
"@blueprintjs/select": "5.3.18",
"@polkadot/api": "12.3.1",
"@polkadot/api-derive": "12.3.1",
"@polkadot/extension-dapp": "0.51.1",
"@polkadot/keyring": "13.0.2",
"@polkadot/react-identicon": "3.8.3",
"@polkadot/types": "12.3.1",
"@polkadot/ui-keyring": "3.8.3",
"@polkadot/util": "13.0.2",
"@polkadot/util-crypto": "13.0.2",
"@polkadot/x-bigint": "^13.0.2",
"@react-three/fiber": "8.17.12",
"@remix-run/dev": "1.19.1",
"@remix-run/eslint-config": "1.19.1",
"@remix-run/node": "1.19.1",
"@remix-run/react": "1.19.1",
"@remix-run/serve": "1.19.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-timeago": "4.1.7",
"@types/three": "0.172.0",
"concurrently": "9.1.2",
"eslint": "9.23.0",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"jotai": "2.12.2",
"lzjs": "^1.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.3.8",
"react-i18next": "^15.4.1",
"react-timeago": "7.2.0",
"remix-utils": "6.6.0",
"tailwindcss": "3.4.17",
"three": "0.174.0",
"three-stdlib": "2.35.14",
"typescript": "5.8.2"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"deasync",
"esbuild"
]
},
"devDependencies": {
"knip": "^5.46.4",
"react-scan": "^0.3.3"
},
"knip": {
"ignoreBinaries": [
"only-allow"
]
}
}