-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1000 Bytes
/
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
{
"name": "@workspace/loca-boot-srcs",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint .",
"pkgs": "sh build/build-pkgs.sh",
"v": "sh build/v.sh",
"pub": "sh build/pub.sh",
"unit": "npm run test:unit",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/loca-spirit/loca-boot"
},
"homepage": "https://github.com/loca-spirit/loca-boot",
"workspaces": [
"packages/*"
],
"dependencies": {
"loca-boot-common": "workspace:*",
"loca-boot-core": "workspace:*",
"loca-boot-service": "workspace:*"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/jest": "^28.1.7",
"@types/node": "^18.19.39",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "28.1.3",
"jest-cli": "28.1.3",
"ts-jest": "^28.0.8",
"tslib": "^2.6.3",
"typescript": "^4.9.5",
"typescript-eslint": "^8.3.0"
},
"volta": {
"yarn": "3.8.2",
"node": "18.17.0"
}
}