forked from ivanciric/the-cyber-caffe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 902 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
{
"name": "coffee",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"start": "cd frontend && npm run start",
"deploy": "cd contract && ./deploy.sh",
"build": "npm run build:contract && npm run build:web",
"build:web": "cd frontend && npm run build",
"build:contract": "cd contract && ./build.sh",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "cd contract && cargo test",
"test:integration": "npm run build:contract && cd integration-tests && cargo run --example integration-tests \"../contract/target/wasm32-unknown-unknown/release/hello_near.wasm\"",
"postinstall": "cd frontend && npm install && cd .. && echo rs tests && echo rs contract"
},
"devDependencies": {
"https-browserify": "^1.0.0",
"near-cli": "^3.3.0",
"process": "^0.11.10",
"stream-http": "^3.2.0",
"url": "^0.11.3"
}
}