This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
37 lines (37 loc) · 1.63 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
{
"name": "token-contract-as",
"description": "# Token Smart Contract\n\nThis project contains implementation of token contract similar to ERC20. The contract allows you to launch a new token on top of the NEAR blockchain which users can interact with as if it were any other token -- checking balances, transferring, etc.\n\n[AssemblyScript](https://github.com/AssemblyScript/assemblyscript) compiles strictly typed TypeScript to WebAssembly using Binaryen. See the [AssemblyScript wiki](https://github.com/AssemblyScript/assemblyscript/wiki) for further instructions and documentation.",
"license": "(MIT AND Apache-2.0)",
"version": "0.0.1",
"scripts": {
"build": "asb --verbose",
"dev:deploy:contract": "near dev-deploy --wasmFile=\"./build/release/contract.wasm\"",
"deploy:contract": "near deploy",
"deploy": "yarn build && yarn deploy:contract && yarn deploy:pages",
"prestart": "yarn build && yarn deploy:contract",
"start": "parcel src/index.html",
"asp": "asp --verbose",
"test": "yarn asp && yarn jest",
"jest": "yarn build && jest test",
"dev": "yarn build && yarn dev:deploy:contract && env-cmd -f ./neardev/dev-account.env parcel src/index.html"
},
"devDependencies": {
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"jest": "^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": {
"testEnvironment": "near-cli/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<rootDir>/node_modules/"
]
}
}