-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "khaos-discord-market",
"private": true,
"description": "Khaos Functions for Discord Market",
"scripts": {
"test": "ava",
"build": "tsc",
"watch": "tsc -w",
"pretest": "yarn build",
"prebuild": "rimraf dist bundled",
"postbuild": "rollup -c",
"predeploy": "yarn build",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js,.mjs --fix",
"lint:format": "prettier --write '**/*.{ts,js,mjs,json,md,yml}'",
"deploy": "node ./deploy.mjs",
"prepare": "husky install"
},
"dependencies": {
"@devprotocol/khaos-core": "1.6.0",
"@rollup/plugin-json": "6.1.0",
"@types/sinon": "17.0.3",
"bent": "7.3.12",
"dotenv": "^16.4.5",
"ethers": "6.12.0",
"node-fetch": "3.3.2",
"ramda": "0.29.1"
},
"devDependencies": {
"@ava/typescript": "2.0.0",
"@pinata/sdk": "^2.1.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/node": "20.12.7",
"@types/ramda": "0.29.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "3.15.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "4.4.1",
"esm": "3.2.25",
"husky": "9.0.11",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"sinon": "17.0.1",
"typescript": "5.4.5"
},
"ava": {
"require": [
"esm"
],
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
},
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/khaos-discord-market.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-protocol/khaos-discord-market/issues"
},
"homepage": "https://github.com/dev-protocol/khaos-discord-market#readme"
}