-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "ambrosus-nop",
"version": "0.1.3",
"private": true,
"description": "",
"repository": "git@github.com:ambrosus/ambrosus-nop.git",
"license": "MPL-2.0-no-copyleft-exception",
"author": "Ambrosus",
"scripts": {
"build": "tsc",
"dev:lint": "eslint src test config",
"dev:lint:fix": "eslint src test config --fix",
"dev:start": "ts-node src/start.ts",
"start": "node dist/src/start.js",
"test": "./tests.sh"
},
"dependencies": {
"@airdao/airdao-node-contracts": "1.2.29",
"axios": "^1.4.0",
"base64url": "^3.0.1",
"chalk": "^4.1.1",
"inquirer": "^6.5.2",
"ip-regex": "^4.3.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^7.31.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.1.3",
"nock": "^13.1.1",
"sinon": "^11.1.1",
"sinon-chai": "^3.2.0"
},
"engines": {
"node": ">=14",
"yarn": ">=1.3.2 <2.0.0"
}
}