-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.78 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.78 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
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
{
"name": "khaos-starter-kit",
"private": true,
"description": "Khaos update cap",
"scripts": {
"test": "ava --timeout=5m",
"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/dev-kit": "8.6.0",
"@devprotocol/khaos-core": "1.6.0",
"@types/bent": "7.3.8",
"@types/mathjs": "9.4.2",
"@types/sinon": "17.0.3",
"bent": "7.3.12",
"bignumber.js": "9.1.2",
"cross-fetch": "4.0.0",
"ethers": "5.7.2",
"mathjs": "12.4.1",
"ramda": "0.29.1"
},
"devDependencies": {
"@ava/typescript": "1.1.1",
"@pinata/sdk": "^2.1.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-inject": "5.0.5",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/deep-equal": "1.0.4",
"@types/node": "20.12.7",
"@types/ramda": "0.29.12",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"ava": "3.15.0",
"deep-equal": "2.2.3",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "4.4.1",
"esm": "3.2.25",
"husky": "9.0.11",
"parcel-bundler": "1.12.5",
"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/"
}
}
},
"hooks": {
"pre-commit": "yarn lint"
}
}