-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
49
50
{
"name": "siberiacancode-core",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"prettier",
"eslint",
"tsconfig",
"builder",
"jest",
"stylelint"
],
"private": true,
"author": {
"name": "SIBERIA CAN CODE 🧊",
"url": "https://github.com/siberiacancode"
},
"bugs": {
"url": "https://github.com/siberiacancode/core/issues"
},
"repository": {
"url": "https://github.com/siberiacancode/core"
},
"workspaces": [
"tools/*",
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"deploy": "turbo run deploy",
"lint": "turbo run lint",
"format": "turbo run format",
"stylelint": "turbo run stylelint",
"unit-test": "turbo run unit-test",
"lint-staged": "lint-staged",
"change": "beachball change --no-commit",
"release": "beachball publish --yes",
"prepare": "husky"
},
"devDependencies": {
"beachball": "^2.49.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
}
}