-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"name": "bring-it",
"version": "0.0.0",
"description": "Deployment tool for frontend",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"homepage": "https://github.com/airkro/bring-it",
"repository": {
"type": "git",
"url": "https://github.com/airkro/bring-it.git"
},
"bugs": {
"url": "https://github.com/airkro/bring-it/issues"
},
"scripts": {
"lint:staged": "nice-move lint staged",
"lint:version": "syncpack lint",
"prepare": "nice-move git hooks",
"version:pin": "syncpack fix-mismatches"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"playwright-core": "~1.49.0"
},
"devDependencies": {
"@nice-move/all-in-base": "^0.2.14",
"@nice-move/syncpack-config": "^0.2.9",
"best-shot": "0.7.9",
"eslint": "^8.57.1",
"garou": "^0.8.2",
"log-symbols": "^4.1.0",
"prettier": "^3.4.1",
"syncpack": "^13.0.0",
"typescript": "~5.7.2"
},
"peerDependencies": {
"@bring-it/npm": "workspace:~",
"@bring-it/utils": "workspace:~"
},
"pnpm": {
"overrides": {
"cpu-features": "-"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.11.0 || ^18.20.5 || ^20.18.1",
"npm": "^10.5.0",
"pnpm": "^9.14.4"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"nice-move": {
"bundle": [
"packages/**"
],
"internal-regex": "^@bring-it\\/utils"
},
"prettier": "@nice-move/prettier-config"
}