-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
55 lines (55 loc) · 2.3 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "tenk-nft",
"version": "0.1.0",
"license": "LGPL-3.0",
"main": "./contracts/tenk/dist/index.js",
"types": "./contracts/tenk/dist/index.d.ts",
"scripts": {
"pretest": "npm run build:testnet && npm run lint",
"upload:nft": "ts-node ./scripts/nft-uploader.ts",
"build:testnet": "npm run build -- --features testnet",
"build": "raen build --release --standards",
"test": "ava",
"test:testnet": "NEAR_WORKSPACES_NETWORK=testnet npm run test",
"test:linkdrop": "npm run test:testnet '*/linkdrop/*'",
"deploy:testnet": "npm run build:testnet && near repl -s ./scripts/deploy.ts",
"deploy": "npm run build && near repl -s ./scripts/deploy.ts",
"createKeys": "ts-node ./scripts/create-keys.ts",
"createLinkUrls": "ts-node ./scripts/create-linkdrops-urls.ts",
"createLinkdrops": "near repl -s ./scripts/create-linkdrops.ts",
"addWhitelist": "near repl -s ./scripts/add-whitelist.js",
"test:unit": "cargo test",
"test:ci": "npm run test:unit && npm run test",
"lint": "eslint . --ext .ts && npm run gui:lint",
"wit": "(cd contracts/tenk; witme near wit -t ts/ --standards && tsc && cp ts/* ../../gui/src/near/contracts/tenk/)",
"schema": "(cd contracts/tenk; witme near json -o ../../gui/src/near/contracts/tenk)",
"wit:schema": "npm run wit && npm run schema",
"docs": "npm run wit && typedoc contracts/tenk/ts/index.ts --tsconfig contracts/tenk/tsconfig.json --out gui/public/docs",
"gui:start": "npm run docs && cd gui && npm install && npm run start",
"gui:build": "npm run docs && cd gui && npm install && npm run build",
"gui:lint": "cd gui && npm run lint",
"start": "npm run gui:start"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"acquit": "^1.2.1",
"acquit-markdown": "^0.1.0",
"eslint": "^8.13.0",
"glob": "^8.0.1",
"lodash": "^4.17.21",
"near-cli": "git+https://github.com/ahalabs/near-cli#betav1",
"near-workspaces-ava": "^1.1.0",
"nft.storage": "^6.2.0",
"raen-cli": "^0.0.5",
"ts-node": "^10.4.0",
"typedoc": "^0.22.15",
"typescript": "^4.5.5",
"witme": "^0.2.5"
},
"dependencies": {
"ipfs-car": "^0.7.0",
"near-api-js": "github:ahalabs/near-api-js#betav1"
}
}