forked from MetaSeth/wallet-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.28 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
{
"name": "wallet-example",
"description": "This example demonstrates how to integrate your application with NEAR Wallet. The contract is quite simple. It can store the account_id of last sender and return it. It also shows how you can debug contracts using logs.",
"version": "0.0.1",
"scripts": {
"build": "asb --verbose",
"dev:deploy:contract": "near dev-deploy --wasmFile=\"./out/main.wasm\" && echo \"# This file used by parcel\nCONTRACT_NAME=$(cat neardev/dev-account)\" > .env.local",
"deploy:contract": "near deploy && rm -f .env.local",
"deploy": "yarn build && yarn deploy:contract",
"prestart": "yarn build && yarn deploy:contract",
"start": "parcel src/index.html",
"asp": "asp --verbose",
"test": "asp && yarn jest",
"jest": "yarn build && jest test --env=near-cli/test_environment",
"dev": "yarn build && yarn dev:deploy:contract && parcel src/index.html"
},
"devDependencies": {
"jest": "^27.0.6",
"jest-environment-node": "^27.0.6",
"near-sdk-as": "3.2.3",
"near-cli": "^2.1.1",
"parcel-bundler": "^1.12.5"
},
"dependencies": {
"near-api-js": "^0.42.0",
"regenerator-runtime": "^0.13.9"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<rootDir>/node_modules/"
]
}
}