generated from dev-protocol/khaos-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "khaos-starter-kit",
"private": true,
"description": "Khaos Starter Kit",
"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 --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"deploy": "curl -X POST -F file=@bundled/index.js 'https://ipfs.infura.io:5001/api/v0/add?pin=true'",
"prepare": "husky install"
},
"dependencies": {
"@devprotocol/khaos-core": "1.6.0",
"@devprotocol/util-ts": "2.2.1",
"@types/sinon": "17.0.3",
"axios": "1.7.9",
"ethers": "5.7.2",
"ramda": "0.30.1",
"sinon": "15.2.0",
"yarn": "1.22.22"
},
"devDependencies": {
"@ava/typescript": "1.1.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "14.1.0",
"@types/node": "22.10.2",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "3.15.0",
"eslint": "7.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "3.7.2",
"esm": "3.2.25",
"husky": "7.0.4",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.79.2",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.9.5"
},
"ava": {
"require": [
"esm"
],
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
}
}
}
}