forked from cosmology-tech/cw-simulate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "root",
"private": "true",
"license": "MIT",
"scripts": {
"deploy": "yarn publish --access public --patch",
"docs": "typedoc --entryPointStrategy expand --readme README.md --name 'Cosmwasm Simulate SDK' packages/cw-simulate/src",
"test": "jest",
"build": "lerna run build",
"postinstall": "patch-package"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
},
"devDependencies": {
"typedoc": "0.24.7",
"esbuild": "^0.19.5",
"esbuild-runner": "^2.2.2",
"@types/jest": "^29.5.2",
"@types/node": "^22.9.0",
"dotenv": "^16.3.1",
"prettier": "^2.7.1",
"jest": "^29.5.0",
"lerna": "^7.1.5",
"nx": "16.10.0",
"patch-package": "^7.0.0",
"ts-loader": "^9.4.4",
"tsx": "^4.7.2",
"typescript": "5.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"webpack-node-externals": "^3.0.0"
}
}