forked from nearprotocol/near-memegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.14 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": "@wasm/guestbook",
"description": "",
"version": "0.0.1",
"scripts": {
"build": "mkdir -p out/ && gulp",
"deploy:contract": "near deploy",
"deploy:pages": "gh-pages -d src",
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build && npm run deploy:contract",
"start": "python3 -mhttp.server --directory src",
"test": "npm run build && jest test --env=near-shell/local_test_environment",
"test-on-devnet": "npm run build && jest test --env=near-shell/devnet_test_environment"
},
"devDependencies": {
"assemblyscript": "github:nearprotocol/assemblyscript.git",
"assemblyscript-json": "github:nearprotocol/assemblyscript-json",
"gh-pages": "^2.0.1",
"gulp": "^3",
"jest": "^22.4.4",
"jest-environment-node": "^24.5.0",
"near-runtime-ts": "github:nearprotocol/near-runtime-ts",
"near-shell": "github:nearprotocol/near-shell"
},
"wasmStudio": {
"name": "NEAR Guest Book",
"description": "NEAR Guest Book with NEAR DevNet Wallet integration on blockchain.",
"icon": "typescript-lang-file-icon"
},
"dependencies": {}
}