-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
31 lines (31 loc) · 1.29 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
{
"name": "counter",
"description": "An Assemblyscript counter that lives in the NEAR blockchain",
"version": "1.1.0",
"scripts": {
"build": "cd contract && npm run build && mkdir -p ../out && rm -f ./out/counter.wasm && cp ./build/release/counter_contract.wasm ../out/main.wasm",
"deploy": "npm run build && near dev-deploy",
"start": "npm run deploy && echo The app is starting! && env-cmd -f ./neardev/dev-account.env parcel frontend/index.html --open",
"dev": "nodemon --watch contract -e ts --exec \"npm run start\"",
"test": "npm run build && npm run test:unit && npm run test:integration",
"test:unit": "cd contract && npm i && npm run test",
"test:integration": "npm run test:integration:ts && npm run test:integration:rs",
"test:integration:ts": "ava --verbose",
"test:integration:rs": "cd integration-tests/rs && cargo run --example integration-tests"
},
"devDependencies": {
"near-sdk-as": "3.2.3",
"near-cli": "^3.2.0",
"nodemon": "~2.0.15",
"parcel-bundler": "~1.12.5",
"ava": "^4.2.0",
"near-workspaces": "^3.1.0",
"typescript": "^4.6.4",
"ts-node": "^10.7.0",
"env-cmd": "^10.1.0"
},
"dependencies": {
"near-api-js": "^0.44.2",
"regenerator-runtime": "^0.13.9"
}
}