-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (82 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ctl-scaffold",
"version": "0.1.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "spago run --main Test.Main",
"unit-tests": "spago test --main Test.UnitTests",
"plutip-tests": "spago run --main Test.Plutip",
"dev": "make run-dev",
"build": "make run-build",
"serve": "BROWSER_RUNTIME=1 webpack serve --config webpack/webpack.ui.config.ts",
"start-protocol": "spago run --main CLI.StartProtocol.Main",
"update-protocol": "spago run --main CLI.UpdateProtocol.Main",
"close-protocol": "spago run --main CLI.CloseProtocol.Main"
},
"author": "",
"license": "MIT",
"dependencies": {
"@emurgo/cardano-message-signing-browser": "1.0.1",
"@emurgo/cardano-message-signing-nodejs": "1.0.1",
"@emurgo/cardano-serialization-lib-browser": "11.2.1",
"@emurgo/cardano-serialization-lib-nodejs": "11.2.1",
"@mlabs-haskell/csl-gc-wrapper": "^1.0.1",
"@mlabs-haskell/json-bigint": " 1.0.0",
"@noble/secp256k1": "^1.7.0",
"apply-args-browser": "0.0.1",
"apply-args-nodejs": "0.0.1",
"base64-js": "^1.5.1",
"big-integer": "1.6.51",
"bignumber.js": "^9.1.1",
"blakejs": "1.2.1",
"bufferutil": "4.0.5",
"jssha": "3.2.0",
"node-polyfill-webpack-plugin": "1.1.4",
"puppeteer-core": "^15.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reconnecting-websocket": "4.4.0",
"uniqid": "5.4.0",
"ws": "8.4.0",
"xhr2": "0.2.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"babel-loader": "^9.1.2",
"buffer": "6.0.3",
"doctoc": "^2.2.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.5",
"webpack": "5.67.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"prettier": {
"arrowParens": "avoid"
}
}