forked from cosmology-tech/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "cosmos-kit",
"version": "0.7.0",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"commit": "git-cz",
"build:ts": "lerna run build:ts --stream",
"build": "lerna run prepare --stream",
"bootstrap": "lerna bootstrap --use-workspaces",
"lint": "lerna run lint",
"format": "lerna run format",
"pretest": "yarn lint",
"test": "lerna run test",
"clear:node_modules": "find . -name 'node_modules' -type d -prune -print | xargs rm -rf",
"clear": "find -E ./packages -iregex '.*/packages/[a-z]*/(main|module|types)' -type d -prune -print | xargs rm -rf"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.1",
"@pyramation/babel-preset-env": "0.2.0",
"babel-eslint": "10.1.0",
"babel-jest": "^29.0.2",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.0.3",
"lerna": "3.22.1",
"prettier": "2.7.1"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit#readme"
}
}