-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.02 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
{
"name": "@waves/waves-repl",
"version": "3.0.1",
"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": "copyfiles -f src/css/* dist/css && copyfiles -f src/svg/* dist/svg && copyfiles -f src/core/jsconsole.css src/core/logo.svg dist/core",
"dist": "rimraf dist && tsc && npm run copyCssSvg",
"prepublishOnly": "npm run dist"
},
"author": "wavesplatform",
"license": "MIT",
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"@waves/ride-js": "^2.2.1"
},
"dependencies": {
"@waves/waves-transactions": "^4.1.8",
"axios": "^0.19.0",
"babylon": "^6.18.0",
"babylon-walk": "^1.0.2",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"react-copy-to-clipboard": "^5.0.1",
"react-redux": "^5.1.2",
"redux": "^4.2.0"
},
"devDependencies": {
"@types/babylon": "^6.16.3",
"@types/babylon-walk": "^3.10.1",
"@types/classnames": "^2.2.6",
"@types/lodash": "^4.14.116",
"@types/long": "^4.0.0",
"@types/node": "7.0.7",
"@types/react": "^16.14.33",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.9.16",
"@types/react-redux": "^6.0.20",
"@waves/ride-js": "^2.2.1",
"autoprefixer": "^9.1.5",
"copy-webpack-plugin": "^4.5.2",
"copyfiles": "^2.1.0",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-inline-svg": "^3.1.1",
"postcss-loader": "^3.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.6.2",
"style-loader": "^0.23.0",
"ts-loader": "^5.2.1",
"tslint": "^5.12.1",
"typescript": "^3.9.10",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}