forked from cosmology-tech/telescope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "telescope",
"version": "0.0.1",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"build": "lerna run prepare --parallel",
"buidl": "lerna run buidl --parallel",
"ast:fixture": "lerna run test:ast --parallel --scope \"@cosmology/ast\"",
"buidl:clean": "lerna run buidl:clean",
"buidl:ast": "lerna run buidl --parallel --scope \"@cosmology/ast\"",
"buidl:parser": "lerna run buidl --parallel --scope \"@cosmology/proto-parser\"",
"buidl:telescope": "lerna run buidl --parallel --scope \"@cosmology/telescope\"",
"buidl:types": "lerna run buidl --parallel --scope \"@cosmology/types\"",
"bootstrap": "yarn --use-workspaces",
"lint": "lerna run lint",
"format": "lerna run format",
"test": "lerna run test --stream"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@pyramation/babel-preset-env": "0.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"eslint": "8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"lerna": "7.0.2",
"prettier": "2.8.7"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/telescope"
},
"dependencies": {
"@jest/transform": "29.5.0"
}
}