-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1023 Bytes
/
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
{
"name": "stickyhabits",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "cd contract && ./build.sh",
"build:web": "cd frontend && npm run build",
"deploy": "cd contract && ./deploy.sh",
"init-contract": "cd frontend && npm run init-contract",
"start": "cd frontend && npm run start",
"star2": "cd frontend2 && npm run start",
"dev": "nodemon --watch contract -e ts --exec \"npm run start\"",
"dev2": "cd frontend2 && npm run dev",
"test": "npm run build:contract && npm run test:unit && npm run test:integration",
"test:unit": "cd contract && cargo test",
"test:integration": "npm run test:integration:rs",
"test:integration:rs": "cp ./contract/target/wasm32-unknown-unknown/release/stickyhabits.wasm ./out/main.wasm && cd integration-tests/rs && cargo run --example integration-tests"
},
"devDependencies": {
"near-cli": "^3.3.0"
},
"dependencies": {}
}