-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "@xdefi-tech/chains",
"version": "1.0.0",
"private": true,
"workspaces": [
"utility-packages/*",
"packages/*",
"examples/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"dev": "turbo run dev",
"publish:packages": "turbo run build && turbo run publish:packages",
"coverage:per-package": "turbo run coverage",
"coverage:total": "yarn coverage:per-package && node coverage.js",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"compile": "turbo run compile",
"compile:build": "turbo run compile:build",
"watch": "turbo run watch --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rimraf node_modules",
"typedoc": "turbo run typedoc",
"chain:generate": "HYGEN_TMPLS=templates hygen basic new",
"publish-packages": "turbo run build lint && changeset version && changeset publish"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.23.3",
"babel-loader": "9.1.2",
"husky": "8.0.3",
"prettier": "2.5.1",
"terser-webpack-plugin": "5.3.7",
"ts-loader": "9.4.2",
"turbo": "latest",
"webpack": "5.82.1",
"webpack-cli": "5.1.1",
"webpack-merge": "5.8.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/plugin-syntax-jsx": "7.21.4",
"@babel/plugin-transform-typescript": "7.21.3",
"@changesets/cli": "2.26.0",
"encoding": "0.1.13",
"hygen": "6.2.0",
"rimraf": "4.4.0",
"tsconfig-paths-webpack-plugin": "4.0.1"
}
}