generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.4 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
{
"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,.mjs --fix",
"lint:format": "prettier --write '**/*.{ts,js,mjs,json,md,yml}'",
"deploy": "node ./deploy.mjs"
},
"dependencies": {
"@devprotocol/khaos-core": "1.6.0",
"ethers": "6.12.0",
"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": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"ava": "3.15.0",
"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",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"typescript": "5.4.5"
},
"ava": {
"require": [
"esm"
],
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}