-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.37 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
{
"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": "node asconfig.js",
"dev:deploy:contract": "near dev-deploy && echo \"# This file used by parcel\nCONTRACT_NAME=$(cat neardev/dev-account)\" > .env.local",
"deploy:contract": "near deploy && rm -f .env.local",
"deploy:pages": "gh-pages -d src",
"deploy": "yarn build && yarn deploy:contract && yarn deploy:pages",
"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-shell/test_environment",
"dev": "yarn build && yarn dev:deploy:contract && parcel src/index.html"
},
"devDependencies": {
"assemblyscript": "^0.9.4",
"gh-pages": "^2.1.1",
"jest": "^25.5.4",
"jest-environment-node": "^25.5.0",
"near-sdk-as": "^0.2.2",
"near-shell": "^0.22.0",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"near-api-js": "^0.23.0",
"regenerator-runtime": "^0.13.5"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<rootDir>/node_modules/"
]
}
}