-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.21 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
72
{
"name": "@waves/waves-repl",
"version": "3.1.0",
"description": "Javascript console to interact with waves blockchain. React component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/wavesplatform/waves-repl",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"copyCssSvg": "cpy \"src/**/*.css\" dist/css --flat && cpy \"src/**/*.svg\" dist/svg --flat && cpy \"src/core/jsconsole.css\" \"src/core/logo.svg\" dist/core --flat",
"dist": "rimraf dist && tsc && npm run copyCssSvg",
"prepublishOnly": "npm run dist"
},
"author": "wavesplatform",
"license": "MIT",
"peerDependencies": {
"@waves/ride-js": "^2.3.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"overrides": {
"glob": "^13.0.6",
"uuid": "^11",
"elliptic": "^6.6.1",
"copyfiles": {
"glob": "^7.2.3"
}
},
"dependencies": {
"@babel/parser": "^7.29.7",
"@waves/node-api-js": "^1.4.0",
"@waves/waves-transactions": "^5.0.0",
"axios": "^1.17.0",
"classnames": "^2.5.1",
"copy-to-clipboard": "^4.0.2",
"react-copy-to-clipboard": "^5.1.1",
"react-redux": "^9.3.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/node": "25.9.2",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.2.17",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19.2.3",
"@waves/ride-js": "^2.3.0",
"autoprefixer": "^10.5.0",
"cpy-cli": "^7.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.6",
"html-webpack-plugin": "^5.6.7",
"node-polyfill-webpack-plugin": "^4.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-inline-svg": "^6.0.0",
"postcss-loader": "^8.2.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.6.0",
"typescript": "^6.0.3",
"webpack": "^5.107.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.4"
}
}