-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 821 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 821 Bytes
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
{
"name": "galaxis",
"version": "0.2.2",
"repository": "github:fenok/galaxis",
"license": "MIT",
"author": "Leonid Fenko <fenok2112@gmail.com>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -p --topological-dev run build",
"lint": "yarn workspaces foreach -p run lint",
"test": "yarn workspaces foreach -p run test",
"format": "yarn workspaces foreach -p run format",
"publish": "yarn node ./scripts/publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}