-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "osmojs-workspace",
"version": "0.0.1",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"build": "lerna run prepare --parallel",
"bootstrap": "lerna bootstrap --use-workspaces",
"codegen": "lerna run codegen --stream --scope osmojs",
"lint": "lerna run lint",
"format": "lerna run format",
"test": "lerna run test --stream",
"clear:modules": "find . -name 'node_modules' -type d -prune -print | xargs rm -rf",
"clear:packages": "find -E ./packages -iregex '.*/packages/[-0-9a-z]*/(main|module|types|build|dist)' -type d -prune -print | xargs rm -rf",
"pub:beta": "lerna publish prerelease --preid beta --allow-branch beta",
"pub": "lerna publish"
},
"devDependencies": {
"@types/jest": "29.5.3",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"cross-env": "7.0.3",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"jest": "29.6.1",
"jest-in-case": "1.0.2",
"lerna": "7.1.4",
"prettier": "2.7.1",
"publish-scripts": "0.1.0",
"regenerator-runtime": "0.13.11",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/osmosis-labs/osmojs"
}
}