-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "flarie",
"packageManager": "yarn@3.6.1",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace @flarie/demo run start",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint 'packages/**/*.ts'",
"build": "yarn workspaces foreach run build",
"v:patch": "yarn workspaces foreach -p --no-private version patch",
"v:minor": "yarn workspaces foreach -p --no-private version minor",
"v:major": "yarn workspaces foreach -p --no-private version major",
"publish": "yarn zx-bulk-release --dry-run"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@types/jest": "^29.5.3",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"microbundle": "^0.15.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0"
},
"dependencies": {
"typescript": "^5.1.6"
}
}