-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.69 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
{
"name": "chain-js-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register --nolazy src/index.ts",
"start-local": "node -r ts-node/register/transpile-only --nolazy src/index.ts",
"debug": "npm run webpack_build_from_local_source && node -r source-map-support/register dist/bundle.js",
"bundle": "npm run webpack_build_from_npm_in_node_modules && node -r source-map-support/register dist/bundle.js",
"webpack_build_from_local_source": "npx webpack build --env use_local_chainjs_code_NOT_npm=true --config ./webpack.config.js",
"webpack_build_from_npm_in_node_modules": "npx webpack build --config ./webpack.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ethereumjs/common": "^3.0.0",
"@open-rights-exchange/chain-js": "^4.9.0",
"@open-rights-exchange/chain-js-plugin-algorand": "^4.9.0",
"@open-rights-exchange/chain-js-plugin-eos": "^4.9.0",
"@open-rights-exchange/chain-js-plugin-ethereum": "^4.9.0",
"dotenv": "^10.0.0",
"ts-node": "^10.4.0",
"web3": "^1.7.5"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"source-map-loader": "^3.0.0",
"source-map-support": "^0.5.20",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"_comment": "@types/jest - Even though we don't need this in this package. If you don't have this you'll get errors when the chainjs library is referenced - not sure why at this point"
}