-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 979 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
25
{
"name": "events-platform",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"start": "cd near.social && yarn dev",
"deploy": "yarn deploy:contract",
"deploy:prod": "yarn deploy:prod && yarn deploy:near.social",
"deploy:contract": "cd contract && yarn deploy",
"deploy:near.social": "cd near.social && yarn deploy",
"build": "yarn build:contract",
"build:contract": "cd contract && yarn build",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "cd contract && yarn test",
"test:integration": "cd integration-tests && yarn test -- -- \"./contract/build/events.wasm\"",
"postinstall": "cd integration-tests && yarn install && cd .. && cd contract && yarn install && cd .. && cd near.social && yarn install"
},
"devDependencies": {
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"near-cli": "^3.3.0",
"prettier": "^2.8.2"
},
"dependencies": {}
}