-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "chainviz",
"version": "1.0.1",
"description": "Chain visualization for Polkadot and Kusama.",
"scripts": {
"format:check": "prettier . --check",
"format": "prettier . --write",
"lint": "eslint ./",
"build": "webpack --config ./src/client/webpack.prod.js",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "jest --detectOpenHandles --forceExit",
"start": "node ./dist/server/server.js",
"deploy": "gh-pages -d ./dist/client",
"init-jest": "jest init"
},
"author": "kukabi @ Helikon Labs",
"license": "GPL 3",
"devDependencies": {
"@polkadot/api": "^14.1.1",
"@polkadot/api-derive": "^14.1.1",
"@polkadot/keyring": "^13.2.1",
"@polkadot/types": "^14.1.1",
"@polkadot/ui-shared": "^3.11.1",
"@tweenjs/tween.js": "^25.0.0",
"@types/async-lock": "^1.4.2",
"@types/camelcase-keys-deep": "^0.1.2",
"@types/express": "^5.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.8.1",
"@types/three": "^0.165.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"async-lock": "^1.4.1",
"camelcase-keys-deep": "^0.1.0",
"cannon-es": "^0.20.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.21.1",
"follow-redirects": "^1.15.9",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"minimist": "^1.2.8",
"node-forge": "^1.3.1",
"prettier": "3.3.3",
"reconnecting-websocket": "^4.4.0",
"terser": "^5.36.0",
"three": "^0.168.0",
"tone": "^15.0.4",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "5.6.3",
"visibilityjs": "^2.0.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"ws": "^8.18.0"
}
}