forked from galacticcouncil/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.72 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
{
"name": "@galacticcouncil/apps",
"version": "1.1.11",
"private": false,
"description": "Galactic Apps",
"author": "Pavol Noha <[email protected]>",
"type": "module",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "node ./esbuild.prod.mjs && tsc --emitDeclarationOnly --outDir dist/types/",
"build:watch": "ESBUILD_WATCH=true node ./esbuild.dev.mjs",
"build:prod": "node ./esbuild.prod.mjs && tsc --emitDeclarationOnly --outDir dist/types/",
"serve": "wds --node-resolve --watch --app-index index.html --open",
"cleanup": "rimraf out && rimraf dist",
"dev": "rimraf out & npm run build:watch & npm run serve",
"copy:assets": "cp -R ./assets/ ./dist/assets/ && cp ./dist/index.html ./dist/404.html",
"package:prod": "rimraf dist && npm run build:prod && npm run copy:assets"
},
"devDependencies": {
"@craftamap/esbuild-plugin-html": "^0.4.0",
"@web/dev-server": "^0.1.17",
"@web/dev-server-esbuild": "^0.3.2",
"esbuild": "^0.14.53",
"esbuild-wasm": "^0.15.2",
"node-html-parser": "^5.4.2-0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@talismn/connect-wallets": "^1.2.1",
"@thi.ng/atom": "^5.1.3",
"@thi.ng/cache": "^2.1.35",
"dayjs": "^1.11.7",
"humanize-duration-ts": "^2.1.1",
"i18next": "^22.4.8",
"lightweight-charts": "^3.8.0",
"short-uuid": "^4.2.0"
},
"peerDependencies": {
"@galacticcouncil/bridge": "0.0.1-rc38",
"@galacticcouncil/sdk": "^0.0.6",
"@galacticcouncil/ui": "^1.0.66",
"@polkadot/api": "^9.9.1",
"@polkadot/extension-inject": "^0.44.6",
"@vaadin/router": "^1.7.4",
"jdenticon": "^3.2.0"
}
}