forked from petarvujovic98/guest-book-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 805 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "guest-book-js",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"start": "cd frontend && npm run start",
"deploy": "cd contract && npm run deploy",
"build": "npm run build:contract && npm run build:web",
"build:web": "cd frontend && npm run build",
"build:contract": "cd contract && npm run build",
"test": "npm run build:contract && npm run test:unit && npm run test:integration",
"test:unit": "cd contract && npm test",
"test:integration": "cd integration-tests && npm test -- -- \"./contract/build/contract.wasm\"",
"postinstall": "cd frontend && npm install && cd .. && cd integration-tests && npm install && cd .. && cd contract && npm install"
},
"devDependencies": {
"near-cli": "^3.3.0"
},
"dependencies": {}
}