-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.22 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.22 KB
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
{
"name": "contract-riffs",
"version": "0.1.0",
"license": "LGPL-3.0",
"private": true,
"scripts": {
"pretest": "npm run build && npm run lint",
"build:testnet": "npm run build -- --features testnet",
"build": "raen build --release -w --all --exclude near-riffs --exclude 'near-riffs-core' --exclude 'near-riffs-admins' --exclude 'near-riffs-factory' --exclude near-riffs-registry --exclude 'factory' && raen build --release -w -p factory",
"test": "cargo test",
"deploy:testnet": "npm run build:testnet && near repl -s ./scripts/deploy.ts",
"deploy": "npm run build && near repl -s ./scripts/deploy.ts",
"test:ci": "npm run test",
"test:it": "cargo test --test it -- --nocapture",
"lint": "cargo clippy --tests -- -Dclippy::all",
"prebuild": "rm -rf target/wit/*0*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"near-cli": "git+https://github.com/ahalabs/near-cli#betav1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"near-api-js": "git+https://github.com/ahalabs/near-api-js#betav1",
"raen-cli": "https://gitpkg.now.sh/raendev/raen/npm?chore/npm"
}
}